Skip to content

Commit

Permalink
Update demo.md (argoproj#1396)
Browse files Browse the repository at this point in the history
Step 2 instructs the user to create the namespace `argo`, and the coin-flip (at least) uses the service account `argo`, so it makes sense to provide `--serviceaccount=argo:argo` so that the initial experience works, "out of the box".
  • Loading branch information
Stephen Steiner authored and edlee2121 committed Jun 17, 2019
1 parent 8342545 commit 5635c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ kubectl create clusterrolebinding YOURNAME-cluster-admin-binding --clusterrole=c

To run all of the examples in this guide, the 'default' service account is too limited to support
features such as artifacts, outputs, access to secrets, etc... For demo purposes, run the following
command to grant admin privileges to the 'default' service account in the namespace 'default':
command to grant admin privileges to the 'argo' service account in the namespace 'argo':
```
kubectl create rolebinding default-admin --clusterrole=admin --serviceaccount=default:default
kubectl create rolebinding default-admin --clusterrole=admin --serviceaccount=argo:argo
```
For the bare minimum set of privileges which a workflow needs to function, see
[Workflow RBAC](docs/workflow-rbac.md). You can also submit workflows which run with a different
Expand Down

0 comments on commit 5635c33

Please sign in to comment.