From 4b07e1c4aab01a9f44b5bbfd36f0863b7b3bf9fe Mon Sep 17 00:00:00 2001 From: Melody Wang Date: Mon, 7 Oct 2024 12:12:41 -0400 Subject: [PATCH 1/2] fixed copy code block bug --- source/cloud/gcp/gke.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/cloud/gcp/gke.md b/source/cloud/gcp/gke.md index c610635d..70106afd 100644 --- a/source/cloud/gcp/gke.md +++ b/source/cloud/gcp/gke.md @@ -23,9 +23,7 @@ $ gcloud init Now we can launch a GPU enabled GKE cluster. ```console -$ gcloud container clusters create rapids-gpu-kubeflow \ - --accelerator type=nvidia-tesla-a100,count=2 --machine-type a2-highgpu-2g \ - --zone us-central1-c --release-channel stable +$ $ gcloud container clusters create rapids-gpu-kubeflow --accelerator type=nvidia-tesla-a100,count=2 --machine-type a2-highgpu-2g --zone us-central1-c --release-channel stable ``` With this command, you’ve launched a GKE cluster called `rapids-gpu-kubeflow`. You’ve specified that it should use nodes of type a2-highgpu-2g, each with two A100 GPUs. From 5edd115f40c67f134a2ea9a4052410de9fc3267d Mon Sep 17 00:00:00 2001 From: Melody Wang Date: Mon, 7 Oct 2024 13:14:43 -0400 Subject: [PATCH 2/2] removed $ --- source/cloud/gcp/gke.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/cloud/gcp/gke.md b/source/cloud/gcp/gke.md index 70106afd..1452b8ca 100644 --- a/source/cloud/gcp/gke.md +++ b/source/cloud/gcp/gke.md @@ -23,7 +23,9 @@ $ gcloud init Now we can launch a GPU enabled GKE cluster. ```console -$ $ gcloud container clusters create rapids-gpu-kubeflow --accelerator type=nvidia-tesla-a100,count=2 --machine-type a2-highgpu-2g --zone us-central1-c --release-channel stable +gcloud container clusters create rapids-gpu-kubeflow \ + --accelerator type=nvidia-tesla-a100,count=2 --machine-type a2-highgpu-2g \ + --zone us-central1-c --release-channel stable ``` With this command, you’ve launched a GKE cluster called `rapids-gpu-kubeflow`. You’ve specified that it should use nodes of type a2-highgpu-2g, each with two A100 GPUs.