From 1e933a1a964568e77b271d63853f4a19fc9ac6af Mon Sep 17 00:00:00 2001 From: David Somers-Harris Date: Sat, 1 Dec 2018 05:51:59 +0900 Subject: [PATCH] replace `run` with `create deployment` (#11392) * replace `run` with `create deployment` because `kubectl run` is deprecated * korean * removing ko files --- content/en/docs/tutorials/hello-minikube.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/tutorials/hello-minikube.md b/content/en/docs/tutorials/hello-minikube.md index e4449ae3da..11e04c12fc 100644 --- a/content/en/docs/tutorials/hello-minikube.md +++ b/content/en/docs/tutorials/hello-minikube.md @@ -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: