Forked from iambryancs/get-argocd-default-password.md
Created
September 10, 2024 01:24
-
-
Save qs-wang/9bb51bf4f2b1a124db56e50f498efa89 to your computer and use it in GitHub Desktop.
Revisions
-
iambryancs created this gist
Oct 3, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ ## 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`.