From 582fcd86e9101e160402e9dabc9b770251653a75 Mon Sep 17 00:00:00 2001 From: Chao Xu Date: Tue, 7 Jul 2015 16:54:00 -0700 Subject: [PATCH] update the kubectl get command in examples/node-selection --- examples/node-selection/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/node-selection/README.md b/examples/node-selection/README.md index b9b97400220..03871e96e38 100644 --- a/examples/node-selection/README.md +++ b/examples/node-selection/README.md @@ -53,7 +53,7 @@ spec: disktype: ssd -When you then run `kubectl create -f pod.yaml`, the pod will get scheduled on the node that you attached the label to! You can verify that it worked by running `kubectl get pods` and looking at the "host" that the pod was assigned to. +When you then run `kubectl create -f pod.yaml`, the pod will get scheduled on the node that you attached the label to! You can verify that it worked by running `kubectl get pods -o wide` and looking at the "NODE" that the pod was assigned to. ### Conclusion