Complete the command to check the status of a deployment named 'webapp'.
kubectl get deployment [1]The command kubectl get deployment webapp shows the status of the deployment named 'webapp'.
Complete the command to view the rollout history of the deployment 'api-server'.
kubectl rollout history deployment/[1]The command kubectl rollout history deployment/api-server shows the rollout history of the 'api-server' deployment.
Fix the error in the command to check the rollout status of deployment 'backend'.
kubectl rollout [1] deployment/backendThe command kubectl rollout status deployment/backend checks the current rollout status of the 'backend' deployment.
Fill both blanks to create a command that shows the rollout history with revision details for deployment 'payment'.
kubectl rollout history deployment/[1] --[2]
The command kubectl rollout history deployment/payment --revision shows detailed revision history for the 'payment' deployment.
Fill all three blanks to create a command that rolls back deployment 'frontend' to revision 3 and then checks its status.
kubectl rollout [1] deployment/[2] --to-revision=[3] && kubectl rollout status deployment/[2]
The command kubectl rollout rollback deployment/frontend --to-revision=3 && kubectl rollout status deployment/frontend rolls back the 'frontend' deployment to revision 3 and then checks its rollout status.