Explore What Sky Can Do

Discover the powerful capabilities of Sky AI agents through these interactive examples

Categories

You

I need to create an EKS cluster with 3 node groups in us-west-2 with autoscaling enabled. Please make it production ready with proper security groups.

Skyflo Logo

Sky

I'll help you set up a production-ready EKS cluster with autoscaling in us-west-2, including proper networking, security groups, and node group configurations optimized for high availability and cost efficiency.

Generated Commands

Review before execution

1. Create EKS Cluster

Creates the EKS cluster with proper networking configuration

bash
aws eks create-cluster \
  --name production-cluster \
  --region us-west-2 \
  --role-arn arn:aws:iam::123456789012:role/EKSClusterRole \
  --resources-vpc-config subnetIds=subnet-abcdef,subnet-123456,subnet-7890ab,securityGroupIds=sg-abcdef

2. Configure Node Groups

Creates a node group with autoscaling configuration

bash
aws eks create-nodegroup \
  --cluster-name production-cluster \
  --nodegroup-name standard-workers \
  --node-role arn:aws:iam::123456789012:role/EKSNodeRole \
  --subnets subnet-abcdef subnet-123456 \
  --instance-types t3.large \
  --scaling-config minSize=2,maxSize=10,desiredSize=3 \
  --region us-west-2

Beyond These Examples

Sky AI can handle a wide range of cloud operations beyond what's shown here. Try it yourself with custom queries tailored to your specific infrastructure needs.