Glossary · IT & Cloud

CKA Glossary of Key Kubernetes Terms

advanced

A free CKA glossary: key Kubernetes terms (pod, deployment, service, ingress, etcd, RBAC) defined in plain English for the exam.

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

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

TermDefinition
PodThe smallest deployable unit; one or more containers sharing a network and storage.
NodeA worker machine that runs pods.
Control planeThe components that manage the cluster (API server, scheduler, controller manager, etcd).
etcdThe key-value store holding all cluster state; backed up and restored in the exam.
DeploymentManages a replicated set of pods and rolling updates.
ReplicaSetKeeps a stable number of pod replicas running.
ServiceA stable network endpoint for a set of pods.
IngressRoutes external HTTP/S traffic to services.
ConfigMapNon-secret configuration injected into pods.
SecretSensitive data (passwords, tokens) injected into pods.
PersistentVolume (PV)Cluster storage provisioned for use by pods.
PersistentVolumeClaim (PVC)A pod’s request for storage.
StorageClassDefines how storage is dynamically provisioned.
NetworkPolicyRules controlling traffic between pods.
RBACRole-Based Access Control: Roles and RoleBindings granting permissions.
kubeadmTool to bootstrap and manage a cluster.
kubectlThe command-line tool to operate the cluster.
NamespaceA virtual cluster used to scope resources.
Taint / TolerationMechanisms controlling which pods schedule onto which nodes.
CoreDNSThe cluster’s DNS for service discovery.

Sources