Fix typo in deployment concept (#13112)

There is a typo in deployment concept doc: missing a code block
indicator, this commit fixes it.
This commit is contained in:
cizixs
2019-03-13 00:58:42 +08:00
committed by Kubernetes Prow Robot
parent b8363e8d81
commit 0f45f09354
@@ -40,7 +40,6 @@ The following are typical use cases for Deployments:
* [Use the status of the Deployment](#deployment-status) as an indicator that a rollout has stuck.
* [Clean up older ReplicaSets](#clean-up-policy) that you don't need anymore.
## Creating a Deployment
The following is an example of a Deployment. It creates a ReplicaSet to bring up three `nginx` Pods:
@@ -730,12 +729,16 @@ Eventually, resume the Deployment and observe a new ReplicaSet coming up with al
```shell
kubectl rollout resume deployment.v1.apps/nginx-deployment
```
```
deployment.apps/nginx-deployment resumed
```
```shell
kubectl get rs -w
```
```
NAME DESIRED CURRENT READY AGE
nginx-2142116321 2 2 2 2m