Load To Technical Architect
[AWS] EKS ArgoCD Install 본문
728x90
# namespace 생성
kubectl create namespace argocd
# ArgoCD 리소스 생성
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.4.7/manifests/install.yaml
# ArgoCD svc type 변경 (CLB)
kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "LoadBalancer"}}'
# ArgoCD 초기 Admin 비밀번호 확인
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
# ArgoCD 접속 CLB Hostname 확인
kubectl get svc argocd-server -n argocd -o json | jq --raw-output '.status.loadBalancer.ingress[0].hostname'
728x90
'Cloud > AWS' 카테고리의 다른 글
[AWS] EKS AutoScaling Scale In과 LB 502, 504 에러 (0) | 2022.08.09 |
---|---|
[AWS] EKS Cluster AutoScaler 구성 (0) | 2022.08.09 |
[AWS] Elastic LoadBalancer's Availability Zones (0) | 2021.12.29 |
[AWS] EKS 리소스 사용량을 Cloudwatch Container Insights에서 모니터링 하는 방법 (0) | 2021.11.18 |
[AWS] Fluentd를 사용하여 EKS Log를 CloudWatch로 전송하는 방법 (9) | 2021.11.18 |
Comments