argocd - getting started installation
To get started with argocd, install it using the following command
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
Download argocd cli from here.
Configure your load balancer so that you can access argocd admin panel via localhost. Either this or you can use the port forward
kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "LoadBalancer"}}'
Setup user login credential (admin) - this will output the initial admin credentials to you.
argocd admin initial-password -n argocd
Next, you can test login using command line using or you can just hit the localhost with your browser.
argocd login localhost
That's it - you managed to setup argocd.
Comments