Glossary · IT & Cloud

CKAD Glossary of Key Kubernetes Terms

advanced

A free CKAD glossary: key Kubernetes application terms (pod, deployment, configmap, probe, ingress, securitycontext) defined in plain English for the exam.

By The Exam Atlas Editorial Team · Verified 2026-06-05

Plain-English definitions of the Kubernetes application terms for CKAD study. Simplified for learning; the official Kubernetes documentation is authoritative.

TermDefinition
PodThe smallest deployable unit; one or more containers sharing a network and storage.
Multi-container podA pod running helper containers (e.g., sidecar) alongside the main one.
DeploymentManages a replicated set of pods and rolling updates.
JobRuns a pod to completion for a batch task.
CronJobRuns a Job on a schedule.
ServiceA stable network endpoint for a set of pods.
IngressRoutes external HTTP/S traffic to services.
ConfigMapNon-secret configuration injected into pods.
SecretSensitive data injected into pods.
SecurityContextSecurity settings (user, privileges) for a pod or container.
ServiceAccountAn identity for processes running in a pod.
Liveness probeA check that restarts a container if it is unhealthy.
Readiness probeA check that controls whether a pod receives traffic.
Resource requests/limitsThe CPU/memory a container requests and is capped at.
NetworkPolicyRules controlling traffic between pods.
Rolling updateReplacing pods gradually to avoid downtime.
Canary deploymentReleasing to a small share of traffic first.
VolumeStorage attached to a pod.
kubectlThe command-line tool to build and deploy on the cluster.

Sources