fix the command output (#9668)

I have verified on version v1.11.
pull/9693/head
chenhuan 2018-08-02 02:08:40 +08:00 committed by k8s-ci-robot
parent a1a3e1d7ed
commit 05a559bf3e
1 changed files with 3 additions and 3 deletions

View File

@ -48,9 +48,9 @@ Creating machine...
Starting local Kubernetes cluster...
$ kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.10 --port=8080
deployment "hello-minikube" created
deployment.apps/hello-minikube created
$ kubectl expose deployment hello-minikube --type=NodePort
service "hello-minikube" exposed
service/hello-minikube exposed
# We have now launched an echoserver pod but we have to wait until the pod is up before curling/accessing it
# via the exposed service.
@ -72,7 +72,7 @@ real path=/
$ kubectl delete services hello-minikube
service "hello-minikube" deleted
$ kubectl delete deployment hello-minikube
deployment "hello-minikube" deleted
deployment.extensions "hello-minikube" deleted
$ minikube stop
Stopping local Kubernetes cluster...
Stopping "minikube"...