Skip to content

Latest commit

 

History

History

install_argocd_with_helm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

개요

  • 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

argocd-server 접속 방법

  • 웹 브라우저에서 https://{YOUR_DOMAIN} 접속

admin 비밀번호 조회

kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo

삭제방법

helm uninstall -n argocd argocd

EKS에 ArgoCD 설치