1. kubectl create namespace argocd
2. Argo CD 설치 (YAML 적용)
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
3. argocd-server 서비스 타입 NodePort로 변경
kubectl patch svc argocd-server -n argocd \
-p '{"spec": {"type": "NodePort"}}'
4. 초기 admin 비밀번호 확인
kubectl get secret argocd-initial-admin-secret -n argocd -o jsonpath="{.data.password}" | base64 -d && echo
5. https://<노드 IP>:<NodePort>
로그인 확인
'CICD' 카테고리의 다른 글
argoCD cluster, git 연동 (0) | 2025.05.26 |
---|---|
Jenkins 설치 방법 (0) | 2023.09.05 |