Free CKA Exam Braindumps (page: 15)

Page 15 of 31

Undo/Rollback deployment to specific revision "1"

  1. Solution:

    // Check Deployment History
    kubectl rollout history deployment webapp
    //Rollback to particular revision
    kubectl rollout undo deploymet webapp --to-revision=1

Answer(s): A



Check the history of the specific revision of that deployment

  1. Solution:

    kubectl rollout history deploy webapp --revision=3

Answer(s): A



Pause the rollout of the deployment

  1. Solution:

    kubectl rollout pause deploy webapp

Answer(s): A



Resume the rollout of the deployment

  1. Solution:

    kubectl rollout resume deploy webapp

Answer(s): A



Page 15 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