Argo CD Deployment¶
First, deploy Argo CD to your Kubernetes cluster using the following commands:
export ARGOCD_VERSION=v3.1.7
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/$ARGOCD_VERSION/manifests/install.yaml
It will install all the necessary components for Argo CD in the argocd namespace.
To retrieve the initial admin password for Argo CD, use the following command:
To access the Argo CD web UI, you can port-forward the Argo CD server service to your local machine:
Then, open your web browser and navigate to:
To log in, use the username admin and the initial password retrieved earlier.