How To Migrate From ECS to EKS and the #1 Trick To Make EKS Easier

Looking to migrate from ECS to EKS, but you're not sure where to start? Explore this guide and learn how to make your EKS journey easier.

Migrating from Amazon ECS to EKS is probably the last thing you want to spend your time on; yet, you’re here. It’s likely that ECS hasn’t been serving you fully, or perhaps you’re curious if you should start planning the migration and how long will it take.

I’ll try to answer most of your questions, starting from whether you should look at EKS at all to some practical migration and EKS management tips for when you’ve made your decision.

Why Migrate From ECS to EKS?

Companies that want to advance in Kubernetes are better off by using EKS. Giants like Amazon, HSBC, JP Morgan Chase, and Delivery Hero all use EKS because of the control and flexibility it offers.

1. Portability 

While ECS is AWS-proprietary technology, EKS is basically a Kubernetes-as-a-platform service developed and maintained by AWS. EKS clusters are actually portable, and you can recreate a similar experience on local environments, development environments, etc., using vanilla K8s. Therefore, you can probably tell in which scenario you’ll face the risk of cloud vendor lock-in.

If you’re building and running applications in ECS, you might encounter vendor lock-in issues in the long run. If you decide to use another provider, you’ll have to define the entire architecture to match it. 

That’s why designing your application to run on EKS leaves you more flexibility. The abstraction layer of EKS helps you to package your containers and move them to another platform quickly. That way, you can run workloads on any other Kubernetes cluster, whether it’s on-prem or the cloud provider offering you the best deal. 

On top of that, you can find solutions on the market that allow you to switch between different managed Kubernetes services seamlessly.

Open source and community are two important points related to this.

With EKS, you have lots of tooling built on top of it and the community itself is growing rapidly. You know what that means: you get plenty of support as many problems already have their solutions. 

Open source also allows you to choose your tooling, while in ECS, everything is very opinionated and there’s not much flexibility left at the end of the day.

2. Networking Limitations

Amazon ECS allows users to assign an elastic network interface (ENI) to a task using only one networking mode: awsvpc. Usually, you can get only 8-15 network interfaces per EC2 instance but ECS also supports containers with higher limits (as long as you meet specific prerequisites). In total, you can run up to 120 tasks per EC2 instance.

In EKS, you get to enjoy greater flexibility in networking. You can share an ENI between multiple pods and place more pods per instance.

3. Namespaces

Namespaces come in handy because they isolate workloads running in the same Kubernetes cluster. For example, you can have a dev, staging, and production environment in one cluster. They can all share the resources of the cluster. 

The trouble is that you can’t use namespaces in ECS. The solution just doesn’t include them as a concept. In contrast to that, EKS allows you to use them just as you would in self-managed Kubernetes. 

4. No Configuration Flexibility

Many people choose ECS because it’s so simple. However, there’s a price to pay for this: namely, limited configuration options. For example, you get no access to cluster nodes, which limits your troubleshooting capabilities.

Also, if you use ECS with Fargate, prepare for even more limitations. For example, you don’t get the option to easily decouple environment-specific config from your container images for portability as you do in EKS.

ECS to EKS Glossary

Before migrating from ECS to EKS, you need to become familiar with a few terms that are common to Kubernetes: 

  • ECS vs. K8s building blocks: This is the best place to get started. Reviewing the building blocks of ECS and Kubernetes will help you understand the differences between these two.

  • EKS Worker Node: This is the EC2 Instance that is running your workloads (pods).

  • IaC (Infrastructure as Code): These are tools that allow you to define infrastructure in code that you usually commit into Git repositories. In addition to that, you get Git-like diff output whenever there is a mismatch between your code and the infrastructure in the cloud. Examples include PulumiTerraform, and AWS CloudFormation.

  • Helm: This is the most popular packaging solution in the Kubernetes world. 

  • ALB: Application Load Balancer

  • NLB: Network Load Balancer

  • Internet Gateway: This internet gateway is a horizontally scaled, redundant, and highly available VPC component that allows communication between your VPC and the internet.

  • VPC: "Amazon Virtual Private Cloud (Amazon VPC) enables you to launch AWS resources into a virtual network that you’ve defined. This virtual network closely resembles a traditional network that you’d operate in your own data center, with the benefits of using the scalable infrastructure of AWS."

ECS comes with its own terminology that you’re probably familiar with. Here’s how different ECS concepts translate into the world of EKS.

  • ECS Task Definition <> EKS Kubernetes Deployment YAML

  • ECS Task <> EKS Kubernetes Pod

  • ECS Cluster <> EKS Cluster

What You Get With EKS

You might not need pods for every workload you’re running, but you can’t deny that they offer unparalleled control over pod placement and resource sharing. This is really valuable when you’re dealing with most service-based architectures.

EKS offers far more flexibility for managing the underlying resources. You can run your clusters on EC2 instances, Fargate, and even on-premises (via EKS Anywhere).

If you’re familiar with Kubernetes and want to get your hands on the flexibility and features it provides, go for EKS. 

How To Migrate From ECS to EKS

AWS has some good tips on migrating to EKS, but we found some other things you need to take care of before your ECS to EKS migration.

1. Rewrite ECS Task Definition Files to K8s Deployment YAMLs

First things first: you need to rewrite your ECS Task Definition files to Kubernetes deployment YAMLs. This part is unavoidable and relates to one of the biggest differences between ECS and EKS (or vanilla Kubernetes).

2. Spin Up Your Environment

You also need to spin up the respective environment versions you have on EKS. People typically choose to use Infrastructure as Code (IaC) for that using Terraform, CloudFormation, or Pulumi. Good news: the most popular IaC tools support EKS.

Assuming that you’re already familiar with Docker and have application images packaged and available for use:

  • You could use the features of Terraform (or an alternative IaC tool) such as Kubernetes provider to ship your Deployment YAMLs as part of the IaC flow. 

  • You could also make use of Helm Provider if your application packages use Helm.

  • Alternatively, you could use CloudFormation which allows deploying workloads to EKS clusters as well, assuming your applications are packaged using Helm.

You can get the above working in many more ways, and each has its pros and cons. This simple solution is enough for now. 

3. Configure Your CI/CD Pipelines 

You need to do this to deploy your applications into the EKS cluster.

4. Networking

Both ECS and EKS support similar networking capabilities: ALB and NLB. You can use the basic constructs of networking that you’re currently familiar with in ECS. This article might come in handy if you’re looking for more details about ingress with ALB. 

5. Run Some Tests

Run your test suite against your new configuration to make sure that everything works properly.

6. Switch Your Traffic to the EKS Cluster

This might vary depending on your configuration, but to give you an idea of what needs to be done:

  • You could switch the IP of your domain points in order for it to point to the Load Balancer used by your EKS cluster. This is how you make sure that your application traffic now points to the EKS cluster.

  • For stateful applications, you need to think about other things as well, such as ensuring that the K8s-based application transitions to being the main user of the database (smooth switch from ECS using the database for writing to the EKS app using the database for writing).

Make Your EKS Journey Easier With Automation

Configuring and running EKS doesn’t have to be hard. This is what all the managed Kubernetes tools are here for.

We Provide consulting, implementation, and management services on DevOps, DevSecOps, Cloud, Automated Ops, Microservices, Infrastructure, and Security

Services offered by us: https://www.zippyops.com/services

Our Products: https://www.zippyops.com/products

Our Solutions: https://www.zippyops.com/solutions

For Demo, videos check out YouTube Playlist: https://www.youtube.com/watch?v=4FYvPooN_Tg&list=PLCJ3JpanNyCfXlHahZhYgJH9-rV6ouPro

If this seems interesting, please email us at [email protected] for a call.



Relevant blogs:

Importance of Kubernetes in IoT Applications 

Software as a Service: How to build a SaaS Application 

6 Myths About the Cloud That You Should Stop Believing 

Monitoring Blind Spots in the Cloud and What to Do About Them


Recent Comments

No comments

Leave a Comment