Fix shell code indentation / markdown formatting (#15657)

The backticks were visible in the generated documentation, removing the indentation hides it once more.
This commit is contained in:
Conlan Cesar
2019-08-04 20:49:51 -04:00
committed by Kubernetes Prow Robot
parent e0b3959eba
commit a5cfbae3d9
@@ -658,26 +658,26 @@ In our example above, 3 replicas are added to the old ReplicaSet and 2 replicas
new ReplicaSet. The rollout process should eventually move all replicas to the new ReplicaSet, assuming new ReplicaSet. The rollout process should eventually move all replicas to the new ReplicaSet, assuming
the new replicas become healthy. To confirm this, run: the new replicas become healthy. To confirm this, run:
```shell ```shell
kubectl get deploy kubectl get deploy
``` ```
The output is similar to this: The output is similar to this:
``` ```
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
nginx-deployment 15 18 7 8 7m nginx-deployment 15 18 7 8 7m
``` ```
The rollout status confirms how the replicas were added to each ReplicaSet. The rollout status confirms how the replicas were added to each ReplicaSet.
```shell ```shell
kubectl get rs kubectl get rs
``` ```
The output is similar to this: The output is similar to this:
``` ```
NAME DESIRED CURRENT READY AGE NAME DESIRED CURRENT READY AGE
nginx-deployment-1989198191 7 7 0 7m nginx-deployment-1989198191 7 7 0 7m
nginx-deployment-618515232 11 11 11 7m nginx-deployment-618515232 11 11 11 7m
``` ```
## Pausing and Resuming a Deployment ## Pausing and Resuming a Deployment