Free CKA Exam Braindumps (page: 14)

Page 14 of 31

Undo the deployment to the previous version 1.17.1 and verify Image has the previous version

  1. Solution:

    kubectl rollout undo deploy webapp
    kubectl describe deploy webapp | grep Image

Answer(s): A



Update the deployment with the image version 1.16.1 and verify the image and check the rollout history

  1. Solution:

    kubectl set image deploy/webapp nginx=nginx:1.16.1
    kubectl describe deploy webapp | grep Image
    kubectl rollout history deploy webapp

Answer(s): A



Check the history of deployment

  1. Solution:

    kubectl rollout history deployment webapp

Answer(s): A



Undo the deployment with the previous version and verify everything is Ok

  1. Solution:

    kubectl rollout undo deploy webapp
    kubectl rollout status deploy webapp
    kubectl get pods

Answer(s): A



Page 14 of 31



Post your Comments and Discuss Linux Foundation CKA exam with other Community members:

Atsushi commented on January 13, 2024
That's good!!
Anonymous
upvote