[K8S] deployment 롤링 업데이트 하기
·
Kubernetes_쿠버네티스
필자는 1Master 2Worker의 클러스터를 통하여 실습한 기록물입니다. Yaml 작성 apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment spec: replicas: 3 # 3개의 Pod를 유지하도록 replica를 설정 selector: matchLabels: app: nginx template: metadata: labels: app: nginx spec: containers: - name: nginx image: nginx:latest ports: - containerPort: 80 K8S에 배포하기 $ kubectl apply -f nginx-deployment.yaml //yaml파일이 있는 경로에서 실행 //출력 d..