diff --git a/source/_includes/check-gpu-pod-works.md b/source/_includes/check-gpu-pod-works.md index bd5593c7..617a1944 100644 --- a/source/_includes/check-gpu-pod-works.md +++ b/source/_includes/check-gpu-pod-works.md @@ -1,7 +1,7 @@ Let's create a sample pod that uses some GPU compute to make sure that everything is working as expected. -```console -$ cat << EOF | kubectl create -f - +```bash +cat << EOF | kubectl create -f - apiVersion: v1 kind: Pod metadata: diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index 3c2d0732..8917fc3c 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -22,8 +22,8 @@ $ az login Now we can launch a GPU enabled AKS cluster. First launch an AKS cluster. -```console -$ az aks create -g -n rapids \ +```bash +az aks create -g -n rapids \ --enable-managed-identity \ --node-count 1 \ --enable-addons monitoring \ @@ -91,8 +91,8 @@ $ az extension add --name aks-preview ````` -```console -$ az aks nodepool add \ +```bash +az aks nodepool add \ --resource-group \ --cluster-name rapids \ --name gpunp \