You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Setup

Install ArgoCD into the Cluster

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


Install the argocd command line util

brew install argocd


To expose the Argo CD API server via load balancer or ingress see: https://argo-cd.readthedocs.io/en/stable/getting_started/


To Port-Forward the Ago CD API:   (Not required when running local k8s cluster)

kubectl port-forward svc/argocd-server -n argocd 8080:443


Update Admin Password

argocd admin initial-password -n argocd
kgDvPDVUeEb5GGfv

 This password must be only used for first time login. We strongly recommend you update the password using `argocd account update-password`.


Login

argocd login <ARGOCD_SERVER>


Update Pasword

argocd account update-password

References

  • No labels