From cd14425b58d35ad114b2cfe3d681c6b3ab9a495c Mon Sep 17 00:00:00 2001 From: Yuan Chen Date: Tue, 7 May 2024 06:01:44 -0700 Subject: [PATCH] Update and clean up quickstart README Signed-off-by: Yuan Chen Add link Signed-off-by: Yuan Chen Minor typo fix Signed-off-by: Yuan Chen --- demo/specs/quickstart/README.md | 47 ++++++++++++++++++++++++--------- 1 file changed, 34 insertions(+), 13 deletions(-) diff --git a/demo/specs/quickstart/README.md b/demo/specs/quickstart/README.md index b7feeca56..e44e281d1 100644 --- a/demo/specs/quickstart/README.md +++ b/demo/specs/quickstart/README.md @@ -3,15 +3,14 @@ kubectl get pod -A ``` -#### Show the current MIG configuration of the machine +#### Show the yaml files for the first 3 example apps discussed in the [KubeCon presentation](https://sched.co/1R2oG) ```console -nvidia-smi --query-gpu=index,name,uuid,mig.mode.current --format=csv -nvidia-smi -L +vim -O gpu-test1.yaml gpu-test2.yaml gpu-test3.yaml ``` -#### Deploy the 4 example apps discussed in the slides +#### Deploy the 3 example apps above ```console -kubectl apply --filename=gpu-test{1,2,3,4}.yaml +kubectl apply --filename=gpu-test{1,2,3}.yaml ``` #### Show all the pods starting up @@ -19,11 +18,6 @@ kubectl apply --filename=gpu-test{1,2,3,4}.yaml kubectl get pod -A ``` -#### Show the yaml files for the first 3 example apps -```console -vim -O gpu-test1.yaml gpu-test2.yaml gpu-test3.yaml -``` - #### Show the GPUs allocated to each ```console kubectl logs -n gpu-test1 -l app=pod @@ -31,14 +25,25 @@ kubectl logs -n gpu-test2 pod --all-containers kubectl logs -n gpu-test3 -l app=pod ``` +#### Show the current MIG configuration of the machine +```console +nvidia-smi --query-gpu=index,name,uuid,mig.mode.current --format=csv +nvidia-smi -L +``` + #### Show the yaml file for the complicated example with MIG devices ```console vim -O gpu-test4.yaml ``` +#### Deploy the MIG example +```console +kubectl apply -f gpu-test4.yaml +``` + #### Show the pods running ```console -kubectl get pod -A +kubectl get pods -A -n gpu-test-4 -l app=pod ``` #### Show the output of nvidia-smi @@ -62,17 +67,33 @@ do \ done ``` -#### Delete this example +#### Delete this MIG example ```console kubectl delete -f gpu-test4.yaml ``` #### Show the pods terminating ```console -kubectl get pod -A +kubectl get pods -A -n gpu-test4 -l app=pod ``` #### Show the output of nvidia-smi ```console nvidia-smi -L ``` + +#### Show the MPS (Multi-Process Service) example + +```console +vim -O gpu-test-mps.yaml +``` + +#### Deploy the MPS example +```console +kubectl apply -f gpu-test-mps.yaml +``` + +#### Show the pod running +```console +kubectl get pod -n sharing-demo -l app=pod +```