Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save qs-wang/9bb51bf4f2b1a124db56e50f498efa89 to your computer and use it in GitHub Desktop.
Save qs-wang/9bb51bf4f2b1a124db56e50f498efa89 to your computer and use it in GitHub Desktop.
Get ArgoCD default admin password

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment