AWS offre diversi modi per eseguire container — ECS (Elastic Container Service, l'orchestrator proprietario di AWS), EKS (Kubernetes gestito), e Fargate (container serverless, senza server da gestire). Comprendere le opzioni aiuta a scegliere la giusta piattaforma di container.
ECS — orchestrator di container di 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
