First Korean I10n work for release-1.14 (#13730)

* First Korean I10n work for release-1.14

- ko: Fix nav-menu sync in tutorials/statefulset #13374 (#13474)
- ko: add outdated files in dev-1.14-ko.1 branch (#13473)
- Translate title of concepts/../image.md Ko (#13507)
- ko: add translation tutorial/stateful-application/cassandra #12450 (#13515)
- Translate reference/kubectl/cheatsheet in Korean (#13549)
- Translate tasks/access-application-cluster/access-cluster in Korean (#13565)
- ko: add tutorials/stateful-application/mysql-wordpress-persistent-vol… (#13516)
- Issue 12838 object management kubectl imperative config (#13657)
- Translate standardized glossary Tag Fandamental in Korean (#13552)

Co-authored-by:    Kim Young Dae <38598117+zer0big@users.noreply.github.com>

Co-authored-by:    Yoon <learder@gmail.com>

Co-authored-by:    lapee79 <lapee79@gmail.com>

Co-authored-by:    Jesang Myung <jesang.myung@gmail.com>

Co-authored-by:    Seokho <shsongist@gmail.com>

Co-authored-by:    Claudia J.Kang <claudiajkang@gmail.com>

Co-authored-by:    June Yi <june.yi@samsung.com>

* Fix conflict : pick-right-solution
This commit is contained in:
Claudia J.Kang
2019-04-10 09:42:12 +09:00
committed by Kubernetes Prow Robot
parent 866fc48195
commit 34074d33ff
78 changed files with 2782 additions and 1028 deletions
@@ -67,11 +67,11 @@ kubectl get pods -w -l app=nginx
```
두번째 터미널에서
[`kubectl create`](/docs/reference/generated/kubectl/kubectl-commands/#create)로
[`kubectl apply`](/docs/reference/generated/kubectl/kubectl-commands/#apply)로
`web.yaml`에 정의된 헤드리스 서비스와 스테이트풀셋을 생성한다.
```shell
kubectl create -f web.yaml
kubectl apply -f web.yaml
service/nginx created
statefulset.apps/web created
```
@@ -154,7 +154,7 @@ web-1
확인할 수 있다.
```shell
kubectl run -i --tty --image busybox dns-test --restart=Never --rm /bin/sh
kubectl run -i --tty --image busybox:1.28 dns-test --restart=Never --rm
nslookup web-0.nginx
Server: 10.0.0.10
Address 1: 10.0.0.10 kube-dns.kube-system.svc.cluster.local
@@ -212,7 +212,7 @@ for i in 0 1; do kubectl exec web-$i -- sh -c 'hostname'; done
web-0
web-1
kubectl run -i --tty --image busybox dns-test --restart=Never --rm /bin/sh
kubectl run -i --tty --image busybox:1.28 dns-test --restart=Never --rm /bin/sh
nslookup web-0.nginx
Server: 10.0.0.10
Address 1: 10.0.0.10 kube-dns.kube-system.svc.cluster.local
@@ -774,7 +774,7 @@ kubectl get pods -w -l app=nginx
볼 것이라는 것을 명심하자.
```shell
kubectl create -f web.yaml
kubectl apply -f web.yaml
statefulset.apps/web created
Error from server (AlreadyExists): error when creating "web.yaml": services "nginx" already exists
```
@@ -874,7 +874,7 @@ service "nginx" deleted
스테이트풀셋과 헤드리스 서비스를 한번 더 다시 생성하자.
```shell
kubectl create -f web.yaml
kubectl apply -f web.yaml
service/nginx created
statefulset.apps/web created
```
@@ -938,7 +938,7 @@ kubectl get po -l app=nginx -w
다른 터미널에서 매니페스트 안에 스테이트풀셋과 서비스를 생성하자.
```shell
kubectl create -f web-parallel.yaml
kubectl apply -f web-parallel.yaml
service/nginx created
statefulset.apps/web created
```