Created
October 5, 2020 11:22
-
-
Save yuyasugano/acdbecf8e638b4f8878caf3b49ae1852 to your computer and use it in GitHub Desktop.
eksctl sample cluster-eks-sample-nodegroup.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: eksctl.io/v1alpha5 | |
kind: ClusterConfig | |
metadata: | |
name: eks-sample | |
region: ap-northeast-1 | |
nodeGroups: | |
- name: ng-1-workers | |
labels: { role: workers } | |
instanceType: t2.micro | |
desiredCapacity: 2 | |
volumeSize: 30 | |
- name: ng-2-builders | |
labels: { role: builders } | |
instanceType: t2.micro | |
desiredCapacity: 2 | |
volumeSize: 30 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment