Merge pull request #14631 from feihujiang/replaceKubectlStopExample

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot 2015-09-29 20:10:58 -07:00
commit d97e76338a
1 changed files with 2 additions and 2 deletions

View File

@ -59,10 +59,10 @@ You can also see the replication controller that was created:
kubectl get rc
```
To stop the two replicated containers, stop the replication controller:
To delete the two replicated containers, delete the replication controller:
```bash
kubectl stop rc my-nginx
kubectl delete rc my-nginx
```
### Exposing your pods to the internet.