Get ArgoCD default admin password To get ArgoCD default admin password after installation, run: kubectl -n argocd get secret argocd-initial-admin-secret \ -o jsonpath="{.data.password}" | base64 -d; echo The default admin user is admin.
If the machine, for some reason, doesn't have the
base64binary you can alternatively useopensslto do the decoding.Edit: pasted the wrong command earlier