-
K8S ArgoCD 설치 (feat. Helm3)K8S 2021. 6. 25. 15:26
Helm3 설치
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 > get_helm.sh chmod 700 get_helm.sh ./get_helm.sh
Helm 레포지토리에 argocd 추가
helm repo add argo https://argoproj.github.io/argo-helm
Repository update
helm repo update
argo repository 목록 확인
helm search repo argo
argo cd 설치
helm install repo argo/argo-cd
권장사항은 포트 포워딩이지만 필자는 Nodeport로 edit해서 사용한다.
kubectl edit svc repo-argocd-server
ClusterIP -> NodePort로 변경해준후 저장한다.
argocd 대시보드에서 사용할 패스워드를 확인한다.
kubectl -n default get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
마지막으로 브라우저를 통해 대시보드 접속 후, admin 계정으로 접속해보자.
반응형'K8S' 카테고리의 다른 글
K8S: Service Networking 정리 (0) 2021.07.07 K8S Pod Networking과 Weave CNI 정리 (0) 2021.07.07 Istio Circuit breaking 정리 (0) 2021.06.25 Istio Header based routing를 이용한 Dark Release (0) 2021.06.25 Istio Ingress Gateway 정리2 (Prefix based routing, Header based routing) (0) 2021.06.24