AWS containers चलाने के कई तरीके प्रदान करता है — ECS (Elastic Container Service, AWS का अपना orchestrator), EKS (managed Kubernetes), और Fargate (serverless containers, प्रबंधित करने के लिए कोई servers नहीं)। विकल्पों को समझना सही container platform चुनने में मदद करता है।
ECS — AWS का container orchestrator
ECS runs and orchestrates Docker containers on AWS:
→ simpler than Kubernetes; deeply integrated with AWS (IAM, ALB, CloudWatch, VPC)
→ TASK (a running container set), TASK DEFINITION (the spec), SERVICE (keeps N tasks
running, integrates with load balancers, auto-scales)
→ good for teams wanting container orchestration without Kubernetes complexity
