Skip to content

Commit

Permalink
replace run with create deployment (#11392)
Browse files Browse the repository at this point in the history
* replace `run` with `create deployment`

because `kubectl run` is deprecated

* korean

* removing ko files
  • Loading branch information
davidkazuhiro authored and k8s-ci-robot committed Nov 30, 2018
1 parent 1fca2fe commit 1e933a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/en/docs/tutorials/hello-minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ tutorial has only one Container. A Kubernetes
Pod and restarts the Pod's Container if it terminates. Deployments are the
recommended way to manage the creation and scaling of Pods.
1. Use the `kubectl run` command to create a Deployment that manages a Pod. The
1. Use the `kubectl create` command to create a Deployment that manages a Pod. The
Pod runs a Container based on the provided Docker image.
```shell
kubectl run hello-node --image=gcr.io/hello-minikube-zero-install/hello-node --port=8080
kubectl create deployment hello-node --image=gcr.io/hello-minikube-zero-install/hello-node --port=8080
```
2. View the Deployment:
Expand Down

0 comments on commit 1e933a1

Please sign in to comment.