Advanced Vocabulary #kubernetes #k8s #devops #platform

Kubernetes — Deep Dive Vocabulary

5 exercises — Pod lifecycle phases, Service types (ClusterIP/NodePort/LoadBalancer), RBAC (Role/ClusterRole/ServiceAccount), PV/PVC/StorageClass storage model, and Pod Security Standards.

0 / 5 completed
Kubernetes vocabulary quick reference
  • Pod phases: Pending → Running → Succeeded/Failed/Unknown; init container runs before app containers
  • Services: ClusterIP (internal) · NodePort (Node IP + port) · LoadBalancer (cloud LB + external IP) · Ingress (HTTP routing)
  • RBAC: Role/ClusterRole define permissions; RoleBinding/ClusterRoleBinding attach them to ServiceAccounts
  • Storage: PV = provisioned storage; PVC = claim; StorageClass = dynamic provisioning; access modes RWO/ROX/RWX
  • Pod Security Standards: Privileged → Baseline → Restricted; applied per-namespace via labels
1 / 5
A runbook entry says: "Pod stuck in Pending state — likely a scheduling constraint or resource quota issue." What is the Kubernetes Pod lifecycle, and what does each state mean?