Skip to content

Commit

Permalink
minikube 1.31 fix for generator to avoid issue
Browse files Browse the repository at this point in the history
with no generator pod was not created
  • Loading branch information
Dzmitry Lahoda authored Sep 17, 2019
1 parent 48d73a6 commit 48ccb3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/setup/learning-environment/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ This brief demo guides you on how to start, use, and delete Minikube locally. Fo

Let’s create a Kubernetes Deployment using an existing image named `echoserver`, which is a simple HTTP server and expose it on port 8080 using `--port`.
```shell
kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.10 --port=8080
kubectl run hello-minikube --generator=run-pod/v1 --image=k8s.gcr.io/echoserver:1.10 --port=8080
```
The output is similar to this:
```
Expand Down

0 comments on commit 48ccb3d

Please sign in to comment.