Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 603 Bytes

01-install.md

File metadata and controls

25 lines (18 loc) · 603 Bytes

Install Argo CD

Install Argo CD using manifests

kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

Access the Argo CD UI (Loadbalancer service)

kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "LoadBalancer"}}'

Access the Argo CD UI (Loadbalancer service) -For Windows

kubectl patch svc argocd-server -n argocd -p '{\"spec\": {\"type\": \"LoadBalancer\"}}'

Get the Loadbalancer service IP

kubectl get svc argocd-server -n argocd