Skip to content

Commit

Permalink
fix the command output (#9668)
Browse files Browse the repository at this point in the history
I have verified on version v1.11.
  • Loading branch information
chenhuan authored and k8s-ci-robot committed Aug 1, 2018
1 parent a1a3e1d commit 05a559b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/docs/setup/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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"...
Expand Down

0 comments on commit 05a559b

Please sign in to comment.