AWS biedt verschillende manieren om containers uit te voeren — ECS (Elastic Container Service, AWS's eigen orchestrator), EKS (beheerde Kubernetes), en Fargate (serverless containers, geen servers om te beheren). Het begrijpen van de opties helpt bij het kiezen van het juiste containerplatform.
ECS — AWS's 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
