Correction in argument assignment

As of kubectl v0.14.1, the argument must be assigned using an equal
sign otherwise a "flag needs an argument: --token" error is thrown.
pull/94/head
Mark Maglana 2016-10-26 16:28:58 -07:00 committed by GitHub
parent 0450e2b3b7
commit 98a4aebc0d
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ kubectl config set-cluster kubernetes-the-hard-way \
```
```
kubectl config set-credentials admin --token chAng3m3
kubectl config set-credentials admin --token=chAng3m3
```
```