- helm 으로 argocd 설치
- helm chart 추가
helm repo add argo https://argoproj.github.io/argo-helm
helm repo update
- helm chart 릴리즈
helm upgrade --install argocd argo/argo-cd \
-n argocd --create-namespace \
-f my-values.yaml
- 웹 브라우저에서 https://{YOUR_DOMAIN} 접속
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
helm uninstall -n argocd argocd