From a5cfbae3d9882d801fb5be43f6f8949026f0fb20 Mon Sep 17 00:00:00 2001 From: Conlan Cesar Date: Sun, 4 Aug 2019 20:49:51 -0400 Subject: [PATCH] Fix shell code indentation / markdown formatting (#15657) The backticks were visible in the generated documentation, removing the indentation hides it once more. --- .../workloads/controllers/deployment.md | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/content/en/docs/concepts/workloads/controllers/deployment.md b/content/en/docs/concepts/workloads/controllers/deployment.md index b34dc87bca..587e9658e0 100644 --- a/content/en/docs/concepts/workloads/controllers/deployment.md +++ b/content/en/docs/concepts/workloads/controllers/deployment.md @@ -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 the new replicas become healthy. To confirm this, run: - ```shell - kubectl get deploy - ``` +```shell +kubectl get deploy +``` - The output is similar to this: - ``` - NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE - nginx-deployment 15 18 7 8 7m - ``` - The rollout status confirms how the replicas were added to each ReplicaSet. - ```shell - kubectl get rs - ``` +The output is similar to this: +``` +NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE +nginx-deployment 15 18 7 8 7m +``` +The rollout status confirms how the replicas were added to each ReplicaSet. +```shell +kubectl get rs +``` - The output is similar to this: - ``` - NAME DESIRED CURRENT READY AGE - nginx-deployment-1989198191 7 7 0 7m - nginx-deployment-618515232 11 11 11 7m - ``` +The output is similar to this: +``` +NAME DESIRED CURRENT READY AGE +nginx-deployment-1989198191 7 7 0 7m +nginx-deployment-618515232 11 11 11 7m +``` ## Pausing and Resuming a Deployment