Translate reference/kubectl/cheatsheet in Korean#13549
Translate reference/kubectl/cheatsheet in Korean#13549k8s-ci-robot merged 1 commit intokubernetes:dev-1.14-ko.1from
Conversation
|
Deploy preview for k8s-dev-ko ready! Built with commit e9da1be |
f0cb4f1 to
dbdd67f
Compare
seokho-son
left a comment
There was a problem hiding this comment.
컨트리뷰션 감사합니다 👍
제가 1차적으로 리뷰해보았습니다. 의견 참고하시기 바랍니다.
dbdd67f to
f84341c
Compare
|
@seokho-son 리뷰 감사합니다 👍 |
seokho-son
left a comment
There was a problem hiding this comment.
추가적으로 코멘트 드립니다 :)
그리고 "Files changed" 탭을 통해서 보시면, 반영되지 않은 코멘트들이 있는데
해당 건들도 확인 부탁드립니다 ~ (Conversation 탭에 모든 리뷰 코멘트가 노출되지는 않는 것 같습니다)
5c8a328 to
f446728
Compare
|
/assign @gochist |
gochist
left a comment
There was a problem hiding this comment.
@jmyung @seokho-son PR과 리뷰 감사합니다! 리뷰가 늦어 죄송합니다. 몇 가지 추가 수정 바랍니다.
| ### BASH | ||
|
|
||
| ```bash | ||
| source <(kubectl completion bash) # bash-completion 패키지를 먼저 설치한 후, bash의 자동 완성을 현재 쉘에 설정한다 |
There was a problem hiding this comment.
| source <(kubectl completion bash) # bash-completion 패키지를 먼저 설치한 후, bash의 자동 완성을 현재 쉘에 설정한다 | |
| source <(kubectl completion bash) # bash-completion 패키지를 먼저 설치한 후, bash의 자동 완성을 현재 셸에 설정한다 |
한글화팀 용어집 참고
|
|
||
| ```bash | ||
| source <(kubectl completion bash) # bash-completion 패키지를 먼저 설치한 후, bash의 자동 완성을 현재 쉘에 설정한다 | ||
| echo "source <(kubectl completion bash)" >> ~/.bashrc # 자동 완성을 bash 쉘에 영구적으로 추가한다 |
There was a problem hiding this comment.
| echo "source <(kubectl completion bash)" >> ~/.bashrc # 자동 완성을 bash 쉘에 영구적으로 추가한다 | |
| echo "source <(kubectl completion bash)" >> ~/.bashrc # 자동 완성을 bash 셸에 영구적으로 추가한다 |
| ### ZSH | ||
|
|
||
| ```bash | ||
| source <(kubectl completion zsh) # 현재 쉘에 zsh의 자동 완성 설정 |
There was a problem hiding this comment.
| source <(kubectl completion zsh) # 현재 쉘에 zsh의 자동 완성 설정 | |
| source <(kubectl completion zsh) # 현재 셸에 zsh의 자동 완성 설정 |
|
|
||
| ```bash | ||
| source <(kubectl completion zsh) # 현재 쉘에 zsh의 자동 완성 설정 | ||
| echo "if [ $commands[kubectl] ]; then source <(kubectl completion zsh); fi" >> ~/.zshrc # 자동 완성을 zsh 쉘에 영구적으로 추가한다. |
There was a problem hiding this comment.
| echo "if [ $commands[kubectl] ]; then source <(kubectl completion zsh); fi" >> ~/.zshrc # 자동 완성을 zsh 쉘에 영구적으로 추가한다. | |
| echo "if [ $commands[kubectl] ]; then source <(kubectl completion zsh); fi" >> ~/.zshrc # 자동 완성을 zsh 셸에 영구적으로 추가한다. |
| ``` | ||
|
|
||
| ## Apply | ||
| `apply`는 쿠버네티스 리소스를 정의하는 파일을 통해 애플리케이션을 관리한다. `kubectl apply`를 실행하여 클러스터에 리소스를 생성하고 업데이트한다. 이것은 프로덕션 환경에서 Kubernetes 애플리케이션을 관리할 때 권장된다. [Kubectl Book](https://kubectl.docs.kubernetes.io)을 참고한다. |
There was a problem hiding this comment.
| `apply`는 쿠버네티스 리소스를 정의하는 파일을 통해 애플리케이션을 관리한다. `kubectl apply`를 실행하여 클러스터에 리소스를 생성하고 업데이트한다. 이것은 프로덕션 환경에서 Kubernetes 애플리케이션을 관리할 때 권장된다. [Kubectl Book](https://kubectl.docs.kubernetes.io)을 참고한다. | |
| `apply`는 쿠버네티스 리소스를 정의하는 파일을 통해 애플리케이션을 관리한다. `kubectl apply`를 실행하여 클러스터에 리소스를 생성하고 업데이트한다. 이것은 프로덕션 환경에서 쿠버네티스 애플리케이션을 관리할 때 권장된다. [Kubectl Book](https://kubectl.docs.kubernetes.io)을 참고한다. |
한글화팀 용어집 참고
| # 파드에 의해 현재 사용되고 있는 모든 시크릿 목록 조회 | ||
| kubectl get pods -o json | jq '.items[].spec.containers[].env[]?.valueFrom.secretKeyRef.name' | grep -v null | sort | uniq | ||
|
|
||
| # 타임스템프로 정렬된 이벤트 목록 조회 |
There was a problem hiding this comment.
| # 타임스템프로 정렬된 이벤트 목록 조회 | |
| # 타임스탬프로 정렬된 이벤트 목록 조회 |
외래어 표기법 상 "스탬프"가 맞는 것 같습니다.
| kubectl logs my-pod -c my-container --previous # 컨테이너의 이전 인스턴스 생성에 대한 파드 로그(stdout, 멀티-컨테이너 경우) 덤프 | ||
| kubectl logs -f my-pod # 실시간 스트림 파드 로그(stdout) | ||
| kubectl logs -f my-pod -c my-container # 실시간 스트림 파드 로그(stdout, 멀티-컨테이너 경우) | ||
| kubectl run -i --tty busybox --image=busybox -- sh # 대화형 쉘로 파드를 실행 |
There was a problem hiding this comment.
| kubectl run -i --tty busybox --image=busybox -- sh # 대화형 쉘로 파드를 실행 | |
| kubectl run -i --tty busybox --image=busybox -- sh # 대화형 셸로 파드를 실행 |
|
|
||
| ### Kubectl 출력 로그 상세 레벨(verbosity)과 디버깅 | ||
|
|
||
| Kubectl 로그 상세 레벨 (verbosity)은 `-v` 또는`--v` 플래그와 로그 레벨을 나타내는 정수로 제어된다. 일반적인 Kubernetes 로깅 규칙과 관련 로그 레벨이 [여기](https://github.com/kubernetes/community/blob/master/contributors/devel/logging.md)에 설명되어 있다. |
There was a problem hiding this comment.
| Kubectl 로그 상세 레벨 (verbosity)은 `-v` 또는`--v` 플래그와 로그 레벨을 나타내는 정수로 제어된다. 일반적인 Kubernetes 로깅 규칙과 관련 로그 레벨이 [여기](https://github.com/kubernetes/community/blob/master/contributors/devel/logging.md)에 설명되어 있다. | |
| Kubectl 로그 상세 레벨(verbosity)은 `-v` 또는`--v` 플래그와 로그 레벨을 나타내는 정수로 제어된다. 일반적인 쿠버네티스 로깅 규칙과 관련 로그 레벨이 [여기](https://github.com/kubernetes/community/blob/master/contributors/devel/logging.md)에 설명되어 있다. |
- 붙여쓰기
- 한글화팀 용어집 참고
f446728 to
d86a0f2
Compare
d86a0f2 to
e9da1be
Compare
|
@gochist 리뷰 감사합니다. 반영 완료 했습니다. 리뷰에 대한 수정 반영은 추가 커밋으로 해야하는데, 실수로 모두 squash 했네요 ^^; |
|
@jmyung 감사합니다! |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: gochist The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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>
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>
- 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>
* 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
from #13229