From aab31488ba7c4fc64477285df5489b58f29a0d81 Mon Sep 17 00:00:00 2001 From: LavredisG <90918919+LavredisG@users.noreply.github.com> Date: Mon, 15 Apr 2024 16:59:20 +0300 Subject: [PATCH] Update content/en/docs/tutorials/kubernetes-basics/update/update-intro.html --- .../docs/tutorials/kubernetes-basics/update/update-intro.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tutorials/kubernetes-basics/update/update-intro.html b/content/en/docs/tutorials/kubernetes-basics/update/update-intro.html index 28e7681af4..62b4e675b0 100644 --- a/content/en/docs/tutorials/kubernetes-basics/update/update-intro.html +++ b/content/en/docs/tutorials/kubernetes-basics/update/update-intro.html @@ -175,7 +175,7 @@ description: |-
The rollout undo
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.
Use the get pods
subcommand to list the Pods again:
kubectl get pods
Four Pods are running. To check the image deployed on these Pods, use the describe pods
subcommand:
To check the image deployed on the running Pods, use the describe pods
subcommand:
kubectl describe pods
The Deployment is once again using a stable version of the app (v2). The rollback was successful.