1. DeploymentDeployment는 애플리케이션의 배포와 관리를 위한 Kubernetes 리소스. 특정 수의 파드를 실행하고, 파드의 상태를 관리합.apiVersion: apps/v1 kind: Deployment metadata: name: mailserver-deployment spec: replicas: 1 selector: matchLabels: app: mailserver template: metadata: labels: app: mailserver spec: containers: - name: mailserver image: your-dockerhub-id/mymailserver..