Rapid AWS EKS deployment in under 30 minutes.
Production-ready EKS with best practices built-in
VPC planning, subnet config, EKS setup, nodegroup tuning, addon installation...
One command. Production-ready. Best practices included.
Setting up EKS manually takes 2-4 weeks. rapid-eks does it in under 30 minutes with best practices built-in.
Validated: 13 min deploy, 17 min destroy, $0.33/hour (~$240/month)
# Prerequisites: AWS credentials + Terraform installed
aws configure
brew install terraform
# Deploy cluster
rapid-eks create my-cluster --region us-east-1
# Connect
aws eks update-kubeconfig --region us-east-1 --name my-cluster
kubectl get nodes
# Destroy
rapid-eks destroy my-cluster --auto-approve
    Create rapid-eks.yaml for custom deployments:
cluster:
  name: prod-cluster
  region: us-west-2
  version: "1.31"
nodegroups:
  - name: general
    instance_type: t3.large
    min_size: 3
    max_size: 10
addons:
  - prometheus
  - karpenter
  - alb-controller
tags:
  Environment: production
  Team: platform
      rapid-eks create prod-cluster --config rapid-eks.yaml
    Full documentation, architecture details, and troubleshooting available on GitHub.
If rapid-eks saves you time deploying EKS, consider sponsoring development.