Last active
March 10, 2022 19:21
-
-
Save lusoal/a795a108c3be6808eb00e413bcb224f8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: containerd-cluster | |
| region: us-east-1 | |
| version: '1.21' | |
| availabilityZones: ['us-east-1a', 'us-east-1b', 'us-east-1c', 'us-east-1d'] | |
| iam: | |
| withOIDC: true | |
| managedNodeGroups: | |
| - name: default-ng | |
| ami: ami-09aa2d2ed2b47b3be | |
| instanceType: m5.large | |
| minSize: 1 | |
| maxSize: 3 | |
| overrideBootstrapCommand: | | |
| #!/bin/bash | |
| /etc/eks/bootstrap.sh containerd-cluster --container-runtime containerd | |
| desiredCapacity: 2 | |
| labels: {role: mngworker} | |
| cloudWatch: | |
| clusterLogging: | |
| enableTypes: ["*"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment