From 1df54c478db35f7d50c42e67e36dffc007e43556 Mon Sep 17 00:00:00 2001 From: Melody Wang Date: Tue, 8 Oct 2024 16:44:09 -0400 Subject: [PATCH 1/6] deleted $ for multiline commands --- source/cloud/azure/aks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index 3c2d0732..c74facd3 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -23,7 +23,7 @@ $ az login Now we can launch a GPU enabled AKS cluster. First launch an AKS cluster. ```console -$ az aks create -g -n rapids \ + az aks create -g -n rapids \ --enable-managed-identity \ --node-count 1 \ --enable-addons monitoring \ @@ -92,7 +92,7 @@ $ az extension add --name aks-preview ````` ```console -$ az aks nodepool add \ + az aks nodepool add \ --resource-group \ --cluster-name rapids \ --name gpunp \ From 9b7088a0830e506b1e73b3d48577f9b6c3ccea77 Mon Sep 17 00:00:00 2001 From: Melody Wang <98235366+melodywang060@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:06:39 -0400 Subject: [PATCH 2/6] Update source/cloud/azure/aks.md Co-authored-by: Jacob Tomlinson --- source/cloud/azure/aks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index c74facd3..ce2eae3d 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -22,7 +22,7 @@ $ az login Now we can launch a GPU enabled AKS cluster. First launch an AKS cluster. -```console +```bash az aks create -g -n rapids \ --enable-managed-identity \ --node-count 1 \ From f1a8682d9cd3f7cccbd095dd4eb7904dfffdc092 Mon Sep 17 00:00:00 2001 From: Melody Wang <98235366+melodywang060@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:06:47 -0400 Subject: [PATCH 3/6] Update source/cloud/azure/aks.md Co-authored-by: Jacob Tomlinson --- source/cloud/azure/aks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index ce2eae3d..e331b54a 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -23,7 +23,7 @@ $ az login Now we can launch a GPU enabled AKS cluster. First launch an AKS cluster. ```bash - az aks create -g -n rapids \ +az aks create -g -n rapids \ --enable-managed-identity \ --node-count 1 \ --enable-addons monitoring \ From bcf36bcf3d6676589d87b0bf38d1ffccf3daedc8 Mon Sep 17 00:00:00 2001 From: Melody Wang <98235366+melodywang060@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:06:52 -0400 Subject: [PATCH 4/6] Update source/cloud/azure/aks.md Co-authored-by: Jacob Tomlinson --- source/cloud/azure/aks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index e331b54a..d70c95fa 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -91,7 +91,7 @@ $ az extension add --name aks-preview ````` -```console +```bash az aks nodepool add \ --resource-group \ --cluster-name rapids \ From f54e67b3d0b84dab38bd52104ad6f3dea8ecc1f1 Mon Sep 17 00:00:00 2001 From: Melody Wang Date: Wed, 9 Oct 2024 14:23:12 -0400 Subject: [PATCH 5/6] fixed multiline command issue --- source/_includes/check-gpu-pod-works.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: From 5b8317e292709b319100392d514ca1a9a7b866fb Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Mon, 14 Oct 2024 11:36:28 +0100 Subject: [PATCH 6/6] Update source/cloud/azure/aks.md --- source/cloud/azure/aks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index d70c95fa..8917fc3c 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -92,7 +92,7 @@ $ az extension add --name aks-preview ````` ```bash - az aks nodepool add \ +az aks nodepool add \ --resource-group \ --cluster-name rapids \ --name gpunp \