Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-Authored-By: Seokho Son <[email protected]>
  • Loading branch information
ysyukr and seokho-son authored Dec 19, 2019
1 parent 1721417 commit 45f27ad
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions content/ko/docs/concepts/architecture/nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,11 @@ NodeStatus의 NodeReady 컨디션을 ConditionUnknown으로 업데이트 하는
[리스(Lease) 오브젝트](/docs/reference/generated/kubernetes-api/{{< latest-version >}}/#lease-v1-coordination-k8s-io) 이다.
각 노드에는 `kube-node-lease` 라는
{{< glossary_tooltip term_id="namespace" text="네임스페이스">}} 에 관련된 리스 오브젝트가 있다.
리스는 경량 리소스로, 클러스터 확장될 때
리스는 경량 리소스로, 클러스터가 확장될 때
노드의 하트비트 성능을 향상 시킨다.

kubelet은 `NodeStatus` 와 리스 오브젝트를 생성하고 업데이트하는
역할을 한다.
kubelet은 `NodeStatus` 와 리스 오브젝트를 생성하고 업데이트 할
의무가 있다.

- kubelet은 상태가 변경되거나 구성된 상태에 대한 업데이트가 없는 경우,
`NodeStatus` 를 업데이트 한다. `NodeStatus` 의 기본 업데이트
Expand Down
6 changes: 3 additions & 3 deletions content/ko/docs/setup/production-environment/tools/kops.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep ta
curl -LO https://github.com/kubernetes/kops/releases/download/1.15.0/kops-darwin-amd64
```

kops 바이너리를 실행가능하게 만든다.
kops 바이너리를 실행 가능하게 만든다.

```shell
chmod +x kops-darwin-amd64
Expand All @@ -79,7 +79,7 @@ brew update && brew install kops
```

Linux에서:
최신 릴리즈를 다운받는 명령어:
최신 릴리즈를 다운로드 받는 명령어:

```shell
curl -LO https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-linux-amd64
Expand All @@ -97,7 +97,7 @@ $(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep ta
curl -LO https://github.com/kubernetes/kops/releases/download/1.15.0/kops-linux-amd64
```

kops 바이너리를 실행가능하게 만든다.
kops 바이너리를 실행 가능하게 만든다.

```shell
chmod +x kops-linux-amd64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ tolerations:
서버 버전을 사용하려면, 추가로 노드 레이블과 nodeSelectors를 설정해야만 한다.

쿠버네티스 1.17은 이것을 단순화하기 위해 새로운 레이블인 `node.kubernetes.io/windows-build` 를 자동으로 추가 한다. 만약 이전 버전을
실행중인 경우 이 레이블을 Windows 노드에 수동으로 추가하는 것을 권장한다.
실행 중인 경우 이 레이블을 Windows 노드에 수동으로 추가하는 것을 권장한다.

이 레이블은 호환성을 일치해야 하는 Windows 메이저, 마이너 및 빌드 번호를 나타낸다. 여기에 현재
사용하는 각 Windows 서버 버전이 있다.
Expand All @@ -162,7 +162,7 @@ tolerations:

### RuntimeClass로 단순화

[RuntimeClass] 를 사용해서 테인트(taint)와 톨러레이션(toleration) 사용하는 프로세스를 간소화 할 수 있다. 클러스터 관리자는
[RuntimeClass] 를 사용해서 테인트(taint)와 톨러레이션(toleration) 사용하는 프로세스를 간소화 할 수 있다. 클러스터 관리자는
이 테인트와 톨러레이션을 캡슐화하는데 사용되는 `RuntimeClass` 오브젝트를 생성할 수 있다.


Expand All @@ -186,8 +186,8 @@ scheduling:
value: "windows"
```

2. 클러스터 관리자로 `kubectl create -f runtimeClasses.yml` 를 실행해서 사용한다
3. 파드 사양에 적합한 `runtimeClassName: windows-2019` 를 추가한다
2. 클러스터 관리자로 `kubectl create -f runtimeClasses.yml` 를 실행해서 사용한다.
3. 파드 사양에 적합한 `runtimeClassName: windows-2019` 를 추가한다.

예시:

Expand Down
2 changes: 1 addition & 1 deletion content/ko/docs/tasks/tools/install-minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ minikube start --vm-driver=<driver_name>
minikube status
```

만약 클러스터가 실행중이면, `minikube status` 의 출력은 다음과 유사해야한다.
만약 클러스터가 실행 중이면, `minikube status` 의 출력은 다음과 유사해야 한다.

```
host: Running
Expand Down

0 comments on commit 45f27ad

Please sign in to comment.