AWS EKS 실습/EKS Beginner14 Helm으로 nginx 설치 Helm은 여러 Kubernetes Resource를 Chart 라는 단일 논리적 배포 단위로 패키징하는 Kubernetes용 패키지 관리자 및 애플리케이션 관리 도구 이다. Helm은 다음 이점을 제공한다. ㅇ 단순하고 (하나의 명령) 반복 적인 Deployment 수행 ㅇ 다른 애플리케이션 및 서비스의 특정 버전을 사용하여 애플리케이션간의 종속성 관리 ㅇ 여러 배포 구성 관리: Test, Stag, Production 등 ㅇ 업데이트 / 롤백 및 애플리케이션 배포 테스트 ㅇ Install the Helm CLI $ curl -sSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash ㅇ 설치된 버전 확인 $ helm.. 2021. 2. 19. Sample Application 배포 Sample Deployment YAML [deployment.yaml] apiVersion: apps/v1 kind: Deployment metadata: name: ecsdemo-nodejs labels: app: ecsdemo-nodejs namespace: default spec: replicas: 1 selector: matchLabels: app: ecsdemo-nodejs strategy: rollingUpdate: maxSurge: 25% maxUnavailable: 25% type: RollingUpdate template: metadata: labels: app: ecsdemo-nodejs spec: containers: - image: brentley/ecsdemo-nodejs:lat.. 2021. 2. 18.