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.
This commit is contained in:
Mark Maglana
2016-10-26 16:28:58 -07:00
committed by GitHub
parent 0450e2b3b7
commit 98a4aebc0d

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
```
```