Kubernetes (K8s) is het dominante container orchestration-platform — het automatiseert het implementeren, schalen en beheren van containerized applicaties over een cluster van machines. Het begrijpen van de kernconcepten (pods, deployments, services, enz.) is belangrijk voor het uitvoeren van containers op schaal.
Wat Kubernetes doet
Kubernetes manages containers across a CLUSTER of nodes (machines), providing:
→ SCHEDULING (place containers on nodes), SELF-HEALING (restart failed containers),
SCALING (up/down, auto), ROLLING UPDATES/rollbacks, SERVICE DISCOVERY,
LOAD BALANCING, CONFIG/SECRET management, STORAGE orchestration
→ DECLARATIVE: you describe the DESIRED STATE; K8s continuously makes reality match it.
