Kubernetes (K8s) என்பது பிரபலமான container orchestration platform — இது containerized applications களை machines ன் cluster முழுவதும் deploy, scale, மற்றும் manage செய்வதை தானாக செய்கிறது. அதன் core concepts (pods, deployments, services, முதலியன) ஐ புரிந்து கொள்வது containers ஐ scale-ல் run செய்வதற்கு முக்கியமாகும்.
Kubernetes என்ன செய்கிறது
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.
