Skip to content

Commit 9c29ea9

Browse files
1000Deltawindsonsea
andcommitted
Fix scale-intro.html outputs indentations of terminal.
Fix command code block without line break Update content/en/docs/tutorials/kubernetes-basics/scale/scale-intro.html Co-authored-by: Michael <[email protected]>
1 parent de5baa1 commit 9c29ea9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

content/en/docs/tutorials/kubernetes-basics/scale/scale-intro.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ <h2 style="color: #3771e3;">Scaling overview</h2>
110110
<div class="row">
111111
<div class="col-md-12">
112112
<h3>Scaling a Deployment</h3>
113-
<p>To list your Deployments use the <code>get deployments</code> subcommand:
114-
<code><b>kubectl get deployments</b></code></p>
113+
<p>To list your Deployments, use the <code>get deployments</code> subcommand:</p>
114+
<p><code><b>kubectl get deployments</b></code></p>
115115
<p>The output should be similar to:</p>
116-
<pre>
117-
NAME READY UP-TO-DATE AVAILABLE AGE
118-
kubernetes-bootcamp 1/1 1 1 11m
119-
</pre>
116+
<pre>
117+
NAME READY UP-TO-DATE AVAILABLE AGE
118+
kubernetes-bootcamp 1/1 1 1 11m
119+
</pre>
120120
<p>We should have 1 Pod. If not, run the command again. This shows:</p>
121121
<ul>
122122
<li><em>NAME</em> lists the names of the Deployments in the cluster.</li>
@@ -125,8 +125,8 @@ <h3>Scaling a Deployment</h3>
125125
<li><em>AVAILABLE</em> displays how many replicas of the application are available to your users.</li>
126126
<li><em>AGE</em> displays the amount of time that the application has been running.</li>
127127
</ul>
128-
<p>To see the ReplicaSet created by the Deployment, run
129-
<code><b>kubectl get rs</b></code></p>
128+
<p>To see the ReplicaSet created by the Deployment, run:</p>
129+
<p><code><b>kubectl get rs</b></code></p>
130130
<p>Notice that the name of the ReplicaSet is always formatted as <tt>[DEPLOYMENT-NAME]-[RANDOM-STRING]</tt>. The random string is randomly generated and uses the <em>pod-template-hash</em> as a seed.</p>
131131
<p>Two important columns of this output are:</p>
132132
<ul>

0 commit comments

Comments
 (0)