AWSは複数のコンテナ実行方法を提供しています。ECS(Elastic Container Service、AWSの独自オーケストレータ)、EKS(マネージドKubernetes)、Fargate(サーバーレスコンテナ、サーバー管理不要)です。オプションを理解することで、適切なコンテナプラットフォームを選択できます。
ECS — 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
