Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Docs: Argocd admin passsword instructions #35

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion argocd-bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,8 @@ NAME HOST/PORT PATH S
example-argocd-server example-argocd-server-argocd.apps-crc.testing example-argocd-server https passthrough/None None
```

You can now access argo-cd through the UI. The password for the admin account is the name of the server pod. In this case it would be 'example-argocd-server-6b49b4dfd8-fblp4'.
You can now access argo-cd through the UI. The password for the admin account is auto-generated and stored in the secret 'example-argocd-cluster'. To extract the admin password with 'jq':

```
$ oc get secret/example-argocd-cluster -o json | jq '.data|to_entries|map({key, value:.value|@base64d})|from_entries'
```