-
Notifications
You must be signed in to change notification settings - Fork 19
/
.codespell_exclude_lines.txt
20 lines (20 loc) · 1.57 KB
/
.codespell_exclude_lines.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Include whole lines that have codespell-recognized typos.
# This is better than accepting a typo for ask someplace random.
# End the file with a blank line.
Approaches for Working with Azure AKS
You can approach running workloads in Azure AKS with NVIDIA GPUs in at least two ways.
Default AKS configuration without the GPU Operator
By default, you can run Azure AKS images on GPU-enabled virtual machines with NVIDIA GPUs,
AKS images include a preinstalled NVIDIA GPU Driver and preinstalled NVIDIA Container Toolkit.
`Use GPUs for compute-intensive workloads on Azure Kubernetes Services <https://learn.microsoft.com/en-us/azure/aks/gpu-cluster>`__
The images that are available in AKS always include a preinstalled NVIDIA GPU driver
After you start your Azure AKS cluster, you are ready to install the NVIDIA GPU Operator.
GPU Operator with Azure AKS <microsoft-aks.rst>
* Added support for running the Operator with Microsoft Azure Kubernetes Service (AKS).
You must use an AKS image with a preinstalled NVIDIA GPU driver and a preinstalled
Create AKS Cluster with a Node Pool to Skip GPU Driver installation
command-line argument to the ``az aks nodepool add`` command.
$ az aks nodepool add --resource-group <rg-name> --name gpunodes --cluster-name <cluster-name> \
`Skip GPU driver installation (preview) <https://learn.microsoft.com/en-us/azure/aks/gpu-cluster?source=recommendations&tabs=add-ubuntu-gpu-node-pool#skip-gpu-driver-installation-preview>`__
After you start your Azure AKS cluster with an image that includes a preinstalled NVIDIA GPU Driver
Azure AKS <microsoft-aks.rst>