Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save qs-wang/9bb51bf4f2b1a124db56e50f498efa89 to your computer and use it in GitHub Desktop.

Select an option

Save qs-wang/9bb51bf4f2b1a124db56e50f498efa89 to your computer and use it in GitHub Desktop.

Revisions

  1. @iambryancs iambryancs created this gist Oct 3, 2023.
    8 changes: 8 additions & 0 deletions get-argocd-default-password.md
    Original 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`.