From a5fda56b3e5e810ae46cba2b087831a201be0390 Mon Sep 17 00:00:00 2001 From: chenhuan Date: Sat, 11 Aug 2018 20:11:54 +0800 Subject: [PATCH] fix the command output (#9816) I have verified on version v1.11 --- .../debug-application-introspection.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/en/docs/tasks/debug-application-cluster/debug-application-introspection.md b/content/en/docs/tasks/debug-application-cluster/debug-application-introspection.md index fbb7f95d1d..ca5b4c8e39 100644 --- a/content/en/docs/tasks/debug-application-cluster/debug-application-introspection.md +++ b/content/en/docs/tasks/debug-application-cluster/debug-application-introspection.md @@ -28,7 +28,7 @@ Create deployment by running following command: ```shell $ kubectl create -f https://k8s.io/examples/application/nginx-with-request.yaml -deployment "nginx-deployment" created +deployment.apps/nginx-deployment created ``` ```shell @@ -257,11 +257,11 @@ Sometimes when debugging it can be useful to look at the status of a node -- for ```shell $ kubectl get nodes -NAME STATUS AGE VERSION -kubernetes-node-861h NotReady 1h v1.6.0+fff5156 -kubernetes-node-bols Ready 1h v1.6.0+fff5156 -kubernetes-node-st6x Ready 1h v1.6.0+fff5156 -kubernetes-node-unaj Ready 1h v1.6.0+fff5156 +NAME STATUS ROLES AGE VERSION +kubernetes-node-861h NotReady 1h v1.11.1 +kubernetes-node-bols Ready 1h v1.11.1 +kubernetes-node-st6x Ready 1h v1.11.1 +kubernetes-node-unaj Ready 1h v1.11.1 ``` ```shell