Skip to content

Instantly share code, notes, and snippets.

@lusoal
Last active August 5, 2020 11:27
Show Gist options
  • Select an option

  • Save lusoal/a5964cce8d7da457cf12e1ecac0ff404 to your computer and use it in GitHub Desktop.

Select an option

Save lusoal/a5964cce8d7da457cf12e1ecac0ff404 to your computer and use it in GitHub Desktop.
Yaml for EKS cluster creation using eksctl
---
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: eksworkshop-eksctl
region: us-east-1
version: "1.17"
managedNodeGroups:
- name: nodegroup
desiredCapacity: 3
ssh:
allow: true
publicKeyName: eksworkshop
availabilityZones: ["us-east-1a", "us-east-1b", "us-east-1c", "us-east-1d"]
# To enable all of the control plane logs, uncomment below:
# cloudWatch:
# clusterLogging:
# enableTypes: ["*"]
secretsEncryption:
keyARN: xxxxxxxxxx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment