Skip to content

Commit

Permalink
arkade already creating namespace of argocd we don't need additional …
Browse files Browse the repository at this point in the history
…step, the line for getting secret is wrapped to be able to show it in browser

Signed-off-by: Batuhan Apaydın <[email protected]>
  • Loading branch information
developer-guy committed Apr 16, 2021
1 parent a142004 commit 66e71b4
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ arkade is not only for the CLI tooling, it also helps you to get started to inst
hopefully arkade also supports installing ArgoCD.

```bash
$ kubectl create namespace argocd
$ arkade install argocd
```

Expand Down Expand Up @@ -171,7 +170,9 @@ CD installation namespace.
You can simply retrieve this password using kubectl:

```bash
$ kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d && echo
$ $ kubectl get secret \
-n argocd \
argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d && echo
SyudUgAtDobmgSjM
```

Expand Down

0 comments on commit 66e71b4

Please sign in to comment.