Skip to content

Commit

Permalink
Update instruction for getting token to work on vanilla k8s and opens…
Browse files Browse the repository at this point in the history
…hift (#1264)
  • Loading branch information
absoludity authored Nov 4, 2019
1 parent 0c624f1 commit 6ed392e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To retrieve the token,
### On Linux/macOS:

```bash
kubectl get secret $(kubectl get serviceaccount kubeapps-operator -o jsonpath='{.secrets[].name}') -o jsonpath='{.data.token}' -o go-template='{{.data.token | base64decode}}' && echo
kubectl get secret $(kubectl get serviceaccount kubeapps-operator -o jsonpath='{range .secrets[*]}{.name}{"\n"}{end}' | grep kubeapps-operator-token) -o jsonpath='{.data.token}' -o go-template='{{.data.token | base64decode}}' && echo
```

### On Windows:
Expand Down

0 comments on commit 6ed392e

Please sign in to comment.