Merge pull request #22054 from soltysh/kubectl_run_updates

Update kubectl run from docs where necessary
This commit is contained in:
Kubernetes Prow Robot
2020-06-26 14:30:14 -07:00
committed by GitHub
6 changed files with 13 additions and 22 deletions
@@ -40,12 +40,6 @@ objects, it provides no history of previous configurations.
Run an instance of the nginx container by creating a Deployment object:
```sh
kubectl run nginx --image nginx
```
Do the same thing using a different syntax:
```sh
kubectl create deployment nginx --image nginx
```