AWS konteynerler çalıştırmak için birkaç yol sunar — ECS (Elastic Container Service, AWS'nin kendi orkestratörü), EKS (yönetilen Kubernetes) ve Fargate (sunucusuz konteynerler, yönetilecek sunucu yok). Seçenekleri anlamak doğru konteyner platformunu seçmeye yardımcı olur.
ECS — AWS'nin konteyner orkestratörü
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
