This visual execution traces Kubernetes deployment status and history commands. First, a deployment named nginx is created with the nginx image. The rollout status command confirms the deployment is running successfully. Rollout history shows the initial revision. Then, the deployment image is updated to nginx:1.19, creating a new revision. Status is checked again to confirm success. History now shows two revisions. A rollback command restores the deployment to the previous image and revision. The final status confirms the rollback succeeded. Variables tracked include deployment image, revision number, and status, showing how they change after each command. Key moments clarify why multiple revisions appear, what rollout status means, and how rollback affects the deployment image. Quiz questions test understanding of update, rollback, and variable states referencing the execution table and variable tracker.