Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save smiley-yoyo/fd3469727deb27db83a064014b1150c5 to your computer and use it in GitHub Desktop.

Select an option

Save smiley-yoyo/fd3469727deb27db83a064014b1150c5 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