[TIL] 2024-08-18

pipiolo·2024년 8월 18일
0

Today I Learned

목록 보기
1/2

What I Did?

  • TIL 시작
  • Certified Kubernetes Application Developer (CKAD) 자격증 준비 시작

What I Learned?

Kubernetes Pod 에서 Yaml 파일 생성하는 방법

kubectl get pod <pod-name> -o yaml > pod-definition.yaml

kubectl edit pod <pod-name> 한계

kubectl edit pod <pod-name>

다음 속성만 수정할 수 있다.

  • spec.containers[*].image
  • spec.initContainers[*].image
  • spec.activeDeadlineSeconds
  • spec.tolerations
  • spec.terminationGracePeriodSeconds

0개의 댓글