AWS oferă mai multe modalități de a rula containere — ECS (Elastic Container Service, orchestratorul propriu al AWS), EKS (Kubernetes gestionat) și Fargate (containere serverless, fără servere de gestionat). Înțelegerea opțiunilor te ajută să alegi platforma de containere potrivită.
ECS — orchestratorul de containere al 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
