Skip to content

Commit

Permalink
modify: managing-secret-using-kubectl, static-pod
Browse files Browse the repository at this point in the history
  • Loading branch information
onestone9900 committed Aug 20, 2022
1 parent 4685ec0 commit 1b443f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ username: 5 bytes
기본적으로 `시크릿`의 내용을 표시하지 않는다. 이는 `시크릿`이 실수로 노출되거나
터미널 로그에 저장되는 것을 방지하기 위한 것이다.


인코딩된 데이터의 실제 내용을 확인하려면 [시크릿 디코딩](#decoding-secret)을 확인하자.

## 시크릿 디코딩 {#decoding-secret}

생성한 시크릿을 보려면 다음 명령을 실행한다.
Expand Down
4 changes: 2 additions & 2 deletions content/ko/docs/tasks/configure-pod-container/static-pod.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,11 @@ CONTAINER IMAGE CREATED STATE
# 예제를 수행하는 사용자가 파일시스템이 호스팅하는 스태틱 파드 설정을 사용한다고 가정한다.
# kubelet 이 동작하고 있는 노드에서 이 명령을 수행한다.
#
mv /etc/kubelet.d/static-web.yaml /tmp
mv /etc/kubernetes/manifests/static-web.yaml /tmp
sleep 20
crictl ps
# 구동 중인 nginx 컨테이너가 없는 것을 확인한다.
mv /tmp/static-web.yaml /etc/kubelet.d/
mv /tmp/static-web.yaml /etc/kubernetes/manifests/
sleep 20
crictl ps
```
Expand Down

0 comments on commit 1b443f7

Please sign in to comment.