Blog
AWS
Kubernetes
5
minutes

From AWS EKS to AWS EKS with Qovery - 6 Reasons Why This Startup Migrated

Sometimes, even when you’re running on a solid infrastructure like AWS EKS, a growing company needs to rethink how they manage it. One startup, fresh off a successful Series A raise, found themselves in just that situation. They had been running two EKS clusters — Production and Staging — managed entirely by their CTO, who is an experienced AWS power user. But with the company scaling and a larger software engineering team on the horizon, they faced a crucial decision: hire their first DevOps Engineer or delay that hire by using Qovery. Here’s why they chose the latter.
Romaric Philogène
CEO & Co-founder
Summary
Twitter icon
linkedin icon

6 Reasons Why This Startup Migrated From EKS to EKS with Qovery

1. No More EKS Upgrade

Despite being an AWS expert, the CTO wanted to free up time for more strategic work and ensure the infrastructure remained best-in-class. Qovery, as an ISV AWS Accelerate Partner, fit the bill perfectly. Qovery’s managed EKS service takes care of everything: cluster upgrades, patch management, and overall maintenance.

Qovery Frees Up 100% of the Setup and Maintenance Time Required to Operate AWS EKS (Kubernetes)

By choosing Qovery, the startup got a state-of-the-art infrastructure running on AWS, without the hassle of managing it themselves. It’s like having a fully automated, always up-to-date EKS setup handled by a dedicated team.

Qovery can also be installed on their existing EKS cluster, but in that case, we can't provide day-2 management (yet). So, their preferred choice was to migrate to our managed EKS cluster running on their own cloud account.

2. Give Autonomy To Software Engineers

As the software engineering team grew, the CTO needed to strike a delicate balance: give developers the autonomy to deploy and manage their own services while maintaining control and security. Qovery’s Role-Based Access Control (RBAC) and Audit Logs made this possible. Software engineers could operate independently without risking security compliance or governance standards, and the CTO could still have oversight whenever needed. Qovery’s tools ensured that security wasn’t compromised even as developer autonomy increased.

3. Best-in-Class IaC

For this CTO, Infrastructure-as-Code (IaC) was non-negotiable. Having previously managed their AWS infrastructure using Terraform, they needed any new solution to seamlessly integrate with their IaC workflows. They were sold when they discovered that Qovery had an official Terraform Provider.

resource "qovery_application" "my_app" {
environment_id = qovery_environment.production.id
name = "My App"
cpu = 500 # Allocate 0.5 CPU
memory = 512 # Allocate 512 MB of RAM
git_repository = {
url = "https://github.com/evoxmusic/my-app.git" # Qovery will clone and build the app directly
branch = "main"
root_path = "/"
}
build_mode = "DOCKER"
dockerfile_path = "Dockerfile" # It will uses this Dockerfile
min_running_instances = 1
max_running_instances = 3 # Scale up to 3 instances
ports = [
{
# Expose this app publicly on HTTPS and provide TLS certificate automatically
internal_port = 1337
external_port = 443
protocol = "HTTP"
publicly_accessible = true
is_default = true
}
]
environment_variables = [
{
key = "DATABASE_HOST"
value = qovery_database.my_psql_database.internal_host
},
{
key = "DATABASE_PORT"
value = qovery_database.my_psql_database.port
},
{
key = "DATABASE_USERNAME"
value = qovery_database.my_psql_database.login
},
{
key = "DATABASE_NAME"
value = "postgres"
},
]
secrets = [
{
key = "ADMIN_JWT_SECRET"
value = var.strapi_admin_jwt_secret
},
{
key = "API_TOKEN_SALT"
value = var.strapi_api_token_salt
},
{
key = "APP_KEYS"
value = var.strapi_app_keys
},
{
key = "DATABASE_PASSWORD"
value = qovery_database.my_psql_database.password
}
]
healthchecks = {
...
}
}

Everything that could be configured through Qovery’s web interface could also be automated and managed via Terraform. This meant the company could continue leveraging their existing Terraform expertise while taking advantage of Qovery’s streamlined infrastructure management.

4. Effortless Future Scaling

Scalability was another key factor. The company wanted to keep open the option of spinning up additional EKS clusters as they expanded, without worrying about the maintenance and complexity that comes with it.

Create Multiple Clusters and Unified The Experience

Qovery’s platform made it easy to launch and manage new clusters in the future. With Qovery handling the heavy lifting, adding new clusters won’t require additional DevOps resources, saving both time and money.

5. 10x Cheaper

The final, and perhaps most compelling, reason boiled down to cost. Hiring a full-time DevOps Engineer in NYC, with a complete package, would have set them back around $220k per year. By comparison, using Qovery was roughly 10 times less expensive.

The choice was obvious: Qovery offered a cost-effective alternative that allowed the company to delay their DevOps hire while still scaling their infrastructure seamlessly. For a startup looking to be efficient with their funding, it was a no-brainer.

6. Hassle-Free Migration

One of the reasons this migration was so fast and smooth was because the company was already using Helm Charts to manage their Kubernetes workloads. Qovery not only supports Helm Charts natively but also takes their management to the next level.

With Qovery, the company could easily leverage environment variables and secrets directly in their Helm deployments, simplifying configuration management. Additionally, Qovery offers native GitOps support for Helm values files, allowing them to version and manage their infrastructure configurations alongside their application code. This streamlined their workflows and ensured consistency across environments.

Thanks to Qovery’s seamless integration with Helm, the entire migration process was completed quickly, allowing the team to focus on delivering value rather than troubleshooting infrastructure issues.

So What?

Migrating from AWS EKS to AWS EKS with Qovery might seem unconventional at first, but for this growing startup, it made perfect sense. By using Qovery, they maintained their AWS-native setup, empowered their software engineers, guaranteed infrastructure security, and achieved significant cost savings. The transition has not only prepared them for future growth but also freed up their CTO to focus on innovation rather than maintenance.

If you’re in a similar position, facing the challenge of scaling infrastructure efficiently while keeping costs down, it might be worth exploring a solution like Qovery. Sometimes, the best upgrade isn’t about switching platforms but optimizing how you use the one you already have.

Share on :
Twitter icon
linkedin icon
Ready to rethink the way you do DevOps?
Qovery is a DevOps automation platform that enables organizations to deliver faster and focus on creating great products.
Book a demo

Suggested articles

Compliance
Azure
 minutes
The Definitive Guide to HIPAA Compliance on Microsoft Azure

Master HIPAA compliance on Azure. Understand the Shared Responsibility Model, the critical role of the BAA, and how to configure Access Control, Encryption, and Networking. See how Qovery automates security controls for continuous compliance.

Mélanie Dallé
Senior Marketing Manager
DevOps
 minutes
Top 10 Portainer Alternatives: Finding a More Powerful & Scalable DevOps Platform

Looking for a Portainer alternative? Discover why Qovery stands out as the #1 choice. Compare features, pros, and cons of the top platforms to simplify your deployment strategy and empower your team.

Mélanie Dallé
Senior Marketing Manager
Kubernetes
3
 minutes
NGINX Ingress Controller End of Maintenance by March 2026

Kubernetes NGINX ingress maintainers have announced that the project will move into end-of-life mode and stop being actively maintained by March 2026. Parts of the NGINX Kubernetes ecosystem are already deprecated or archived.

Romaric Philogène
CEO & Co-founder
DevOps
 minutes
The 10 Best Octopus Deploy Alternatives for Modern DevOps

Explore the top 10 Octopus Deploy alternatives for modern DevOps. Find the best GitOps and cloud-native Kubernetes delivery platforms.

Mélanie Dallé
Senior Marketing Manager
AWS
Cloud
Business
8
 minutes
6 Best AWS Deployment Services to Consider

Choose the best AWS deployment tool for your needs: EKS, App Runner, Elastic Beanstalk, or CloudFormation. We compare their complexity, ideal use cases, and introduce Qovery, the new, automated platform that simplifies Kubernetes and IaC for rapid deployment.

Morgan Perry
Co-founder
Cloud
Kubernetes
 minutes
The High Cost of Vendor Lock-In in Cloud Computing and How to Avoid it

Cloud vendor lock-in threatens agility and raises costs. Discover the high price of proprietary services, egress fees, and technical entrenchment, plus the strategic roadmap to escape. Learn how embracing open standards, Kubernetes, and an exit strategy from day one ensures long-term flexibility and control.

Mélanie Dallé
Senior Marketing Manager
DevOps
 minutes
The Top 10 Porter Alternatives: Finding a More Flexible DevOps Platform

Looking for a Porter alternative? Discover why Qovery stands out as the #1 choice. Compare features, pros, and cons of the top 10 platforms to simplify your deployment strategy and empower your team.

Mélanie Dallé
Senior Marketing Manager
AWS
Deployment
 minutes
AWS App Runner Alternatives: Top 10 Choices for Effortless Container Deployment

AWS App Runner limits control and locks you into AWS. See the top 10 alternatives, including Qovery, to gain crucial customization, cost efficiency, and multi-cloud flexibility for containerized application deployment.

Mélanie Dallé
Senior Marketing Manager

It’s time to rethink
the way you do DevOps

Say goodbye to DevOps overhead. Qovery makes infrastructure effortless, giving you full control without the trouble.