Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.
Exam details
A Pod is the smallest deployable unit in Kubernetes. It represents a single instance of a running process and can contain one or more containers that share:
Multiple containers in a Pod share the same network and storage, making them ideal for tightly coupled processes. Common patterns include:
An init container runs before the main application containers start. It runs to completion and must succeed before the next init container (or main container) starts. Use cases include:
The sidecar pattern places a helper container alongside the main application container within the same Pod. The sidecar extends or enhances the main container's functionality. Examples:
A Service is an abstraction that defines a logical set of Pods and a policy to access them. It provides: