AWS erbjuder flera sätt att köra containers — ECS (Elastic Container Service, AWS egen orkestrierer), EKS (hanterad Kubernetes) och Fargate (serverlösa containers, inga servrar att hantera). Att förstå alternativen hjälper till att välja rätt container-plattform.
ECS — AWS egen container-orkestrierer
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
