Deployment — Certified Kubernetes App Developer (CKAD) Practice Questions
A Deployment is a Kubernetes resource that manages a replicated set of Pods, providing declarative updates, rollback capability, and self-healing through a ReplicaSet. On the CKAD exam, candidates are frequently asked to create and modify Deployments, scale replica counts, update container images, and interpret rollout status. Deployments represent the standard way to run stateless application workloads in Kubernetes, making them one of the most tested resource types on the exam.
Free questions on deployment
How do you update an image in a running Deployment without modifying the manifest?
Free question · medium · full answer + explanation
What is the primary purpose of a Deployment?
Free question · easy · full answer + explanation
More deployment questions in the full bank
- What is the purpose of the progressDeadlineSeconds field in a Deployment? Unlock answer & explanation →
- A Deployment needs to ensure old pods are fully drained of connections before removing them. How? Unlock answer & explanation →
- Your Deployment needs to survive node failures. Which configuration is essential? Unlock answer & explanation →