AWS 提供了多种运行容器的方式 — ECS(Elastic Container Service,AWS 自有的 orchestrator)、EKS(托管 Kubernetes)和 Fargate(无服务器容器,无需管理服务器)。理解这些选项有助于选择合适的容器平台。
ECS — AWS 的容器 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
