Update content/en/docs/tutorials/kubernetes-basics/update/update-intro.html

pull/45885/head
LavredisG 2024-04-15 16:59:20 +03:00 committed by LavredisG
parent e137b04eb1
commit aab31488ba
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ description: |-
<p>The <code>rollout undo</code> command reverts the deployment to the previous known state (v2 of the image). Updates are versioned and you can revert to any previously known state of a Deployment.</p>
<p>Use the <code>get pods</code> subcommand to list the Pods again:</p>
<p><code><b>kubectl get pods</b></code></p>
<p>Four Pods are running. To check the image deployed on these Pods, use the <code>describe pods</code> subcommand:</p>
<p>To check the image deployed on the running Pods, use the <code>describe pods</code> subcommand:</p>
<p><code><b>kubectl describe pods</b></code></p>
<p>The Deployment is once again using a stable version of the app (v2). The rollback was successful.</p>
</div>