AWS cung cấp một số cách để chạy container — ECS (Elastic Container Service, orchestrator riêng của AWS), EKS (Kubernetes được quản lý) và Fargate (container serverless, không có máy chủ để quản lý). Hiểu các tùy chọn giúp chọn đúng nền tảng container.
ECS — orchestrator container của AWS
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
