fix the command output (#9774)

I have verified on version v1.11
This commit is contained in:
chenhuan
2018-08-09 07:19:48 +08:00
committed by k8s-ci-robot
parent 382110f202
commit 63fb7ac88c
@@ -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 <none> 53/UDP,53/TCP 1h
kube-dns ClusterIP 10.0.0.10 <none> 53/UDP,53/TCP 1h
...
```