Pod Creation — Certified Kubernetes App Developer (CKAD) Practice Questions
Pod creation is the most fundamental hands-on skill tested in the CKAD exam, covering both imperative creation using kubectl run with appropriate flags and declarative creation by applying a YAML manifest. Candidates must be comfortable generating a base manifest quickly with kubectl run and dry-run output, then editing it to add required fields before applying it to the cluster. The exam is time-pressured, so fluency in both approaches directly affects how many tasks a candidate can complete. Understanding what the API server validates at admission and which fields are immutable after creation also prevents costly mistakes during the exam.
Free questions on pod creation
What command is used to create a Pod named "my-pod" from an nginx image?
Free question · medium · full answer + explanation