Skip to content

Instantly share code, notes, and snippets.

@jithin-scaria
Created May 17, 2022 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jithin-scaria/72a48d22ee1935a1ae36a2922feb1484 to your computer and use it in GitHub Desktop.
Save jithin-scaria/72a48d22ee1935a1ae36a2922feb1484 to your computer and use it in GitHub Desktop.
eksctl configuration for a simple Amazon EKS cluster.
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: aws-lab # name Of the clutser we want to use.
region: ca-central-1 # Region in which cluster need to be created
nodeGroups:
- name: ng-1 # Node group Name
instanceType: t3.medium # EC2 instance Type. "t3.medium" or above is required.
desiredCapacity: 3 # Requred number of "t3.medium" instance in node group "ng-1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment