AWS tarjoaa useita tapoja suorittaa kontteja — ECS (Elastic Container Service, AWS:n oma orkestroija), EKS (hallittu Kubernetes) ja Fargate (palvelimeton konttien suoritus, ei palvelimia hallittavaksi). Vaihtoehtojen ymmärtäminen auttaa valitsemaan oikean konttialustan.
ECS — AWS:n konttiorkestraija
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
