AWS nudi nekoliko načina za pokretanje kontejnera — ECS (Elastic Container Service, AWS-ov vlastiti orkestrirani sustav), EKS (upravljana Kubernetes) i Fargate (serverless kontejneri, bez poslužitelja za upravljanje). Razumijevanje mogućnosti pomaže u odabiru prave platforme za kontejnere.
ECS — AWS-ov orkestrirani sustav za kontejnere
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
