Skip to content

Commit

Permalink
Merge pull request #35 from nickjordan/fix-doc-argocd-admin-pw
Browse files Browse the repository at this point in the history
Fix Docs: Argocd admin passsword instructions
  • Loading branch information
oybed committed Mar 25, 2024
2 parents 0a887fe + 9f10827 commit 77be999
Showing 1 changed file with 5 additions and 1 deletion.
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'
```

0 comments on commit 77be999

Please sign in to comment.