From 56b6053e7a9a7aa2cb2518d67e10f3bb15bab194 Mon Sep 17 00:00:00 2001 From: David Somers-Harris Date: Fri, 7 Dec 2018 12:38:57 +0900 Subject: [PATCH] [korean] replacing "run" with "create deployment" (#11437) "run" is deprecated and "create deployment" is preferred so the english doc was updated in #11392 this pr reflects that change in the korean translation --- content/ko/docs/tutorials/hello-minikube.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/ko/docs/tutorials/hello-minikube.md b/content/ko/docs/tutorials/hello-minikube.md index cef4959c23..b422d3f17c 100644 --- a/content/ko/docs/tutorials/hello-minikube.md +++ b/content/ko/docs/tutorials/hello-minikube.md @@ -213,13 +213,13 @@ node 6.9.2 faaadb4aaf9b 헬스를 검사해서 파드의 컨테이너가 종료되면 다시 시작해준다. 파드의 생성 및 확장을 관리하는 방법으로 디플로이먼트를 권장한다. -`kubectl run` 커맨드를 사용하여 파드를 관리하는 디플로이먼트를 만든다. +`kubectl create` 커맨드를 사용하여 파드를 관리하는 디플로이먼트를 만든다. 파드는 `hello-node:v1` Docker 이미지를 기반으로 한 컨테이너를 실행한다. (이미지를 레지스트리에 Push하지 않았기 때문에) Docker 레지스트리에서 이미지를 가져오기 보다는, 항상 로컬 이미지를 사용하기 위해 `--image-pull-policy` 플래그를 `Never`로 설정한다. ```shell -kubectl run hello-node --image=hello-node:v1 --port=8080 --image-pull-policy=Never +kubectl create deployment hello-node --image=hello-node:v1 --port=8080 --image-pull-policy=Never ``` 디플로이먼트를 확인한다.