From 63fb7ac88c6e92c3a68aa71d8fc023871f6309d4 Mon Sep 17 00:00:00 2001 From: chenhuan Date: Thu, 9 Aug 2018 07:19:48 +0800 Subject: [PATCH] fix the command output (#9774) I have verified on version v1.11 --- .../tasks/administer-cluster/dns-debugging-resolution.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/docs/tasks/administer-cluster/dns-debugging-resolution.md b/content/en/docs/tasks/administer-cluster/dns-debugging-resolution.md index 62d05c19b1..23061cbd74 100644 --- a/content/en/docs/tasks/administer-cluster/dns-debugging-resolution.md +++ b/content/en/docs/tasks/administer-cluster/dns-debugging-resolution.md @@ -28,7 +28,7 @@ Then create a pod using this file and verify its status: ```shell kubectl create -f https://k8s.io/examples/admin/dns/busybox.yaml -pod "busybox" created +pod/busybox created kubectl get pods busybox NAME READY STATUS RESTARTS AGE @@ -129,9 +129,9 @@ Verify that the DNS service is up by using the `kubectl get service` command. ```shell kubectl get svc --namespace=kube-system -NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE +NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE ... -kube-dns 10.0.0.10 53/UDP,53/TCP 1h +kube-dns ClusterIP 10.0.0.10 53/UDP,53/TCP 1h ... ```