Last active
November 7, 2022 16:10
-
-
Save davivcgarcia/040f66962e9f8e31eb03fbdf09ad97e0 to your computer and use it in GitHub Desktop.
Amazon EKS Workshop - Cluster Config Example (eksctl)
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
kind: ClusterConfig | |
apiVersion: eksctl.io/v1alpha5 | |
metadata: | |
name: sandbox | |
version: "1.21" | |
region: us-east-1 | |
cloudWatch: | |
clusterLogging: | |
enableTypes: | |
- api | |
- audit | |
- authenticator | |
- controllerManager | |
- scheduler | |
availabilityZones: | |
- us-east-1a | |
- us-east-1b | |
- us-east-1c | |
vpc: | |
nat: | |
gateway: HighlyAvailable | |
clusterEndpoints: | |
privateAccess: true | |
publicAccess: true | |
publicAccessCIDRs: | |
- 0.0.0.0/0 | |
iam: | |
withOIDC: true | |
serviceAccounts: | |
- metadata: | |
name: cluster-autoscaler | |
namespace: kube-system | |
wellKnownPolicies: | |
autoScaler: true | |
roleName: sandbox-autoscaler-role | |
- metadata: | |
name: external-dns | |
namespace: kube-system | |
wellKnownPolicies: | |
externalDNS: true | |
- metadata: | |
name: aws-load-balancer-controller | |
namespace: aws-system | |
wellKnownPolicies: | |
awsLoadBalancerController: true | |
roleName: sandbox-lb-controller-role | |
- metadata: | |
name: aws-cloudwatch-agent | |
namespace: aws-system | |
attachPolicyARNs: | |
- arn:aws:iam::aws:policy/CloudWatchAgentServerPolicy | |
roleName: sandbox-cloudwatch-metrics | |
- metadata: | |
name: aws-fluent-bit | |
namespace: aws-system | |
attachPolicyARNs: | |
- arn:aws:iam::aws:policy/CloudWatchAgentServerPolicy | |
roleName: sandbox-fluent-bit | |
addons: | |
- name: vpc-cni | |
version: latest | |
- name: kube-proxy | |
version: latest | |
- name: coredns | |
version: latest | |
managedNodeGroups: | |
- name: sandbox-amd64-workers | |
instanceType: m5.large | |
desiredCapacity: 3 | |
minSize: 2 | |
maxSize: 5 | |
privateNetworking: true | |
ssh: | |
enableSsm: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment