- 제일 최상위 개념 / 디플로이먼트는 레플리카셋의 상위 개념으로 볼 수 있다. 레플리카셋을 생성하는 디플로이먼트를 정의할 수 있고, 배포 작업을 좀 더 세분화(롤링 업데이트 등) 하여 조작할 수 있는 기능을 가지고 있다. vi dep.yml apiVersion: apps/v1 kind: Deployment metadata: name: dep-nginx labels: app: nginx1 spec: replicas: 2 selector: matchLabels: app: nginx-a template: metadata: labels: app: nginx-a spec: containers: - name: nginx-pod image: nginx:1.14.2 ports: - containerPort: 80 k..