- EKS에 ArgoCD를 helm chart로 설치
- ALB controller
- External DNS Controller
- AWS ACM
- 환경변수 설정
export ACM_ARN="YOUR_ACM_ARN"
export HOST="YOUR_HOST"
- 템플릿 생성
envsubst < ./values-template.yaml > my-values.yaml
- helm chart 릴리즈
helm upgrade --install argocd argo/argo-cd \
-n argocd --create-namespace \
-f my-values.yaml
helm uninstall -n argocd argocd