-
Notifications
You must be signed in to change notification settings - Fork 11
/
eks_config_large.yaml
73 lines (67 loc) · 1.52 KB
/
eks_config_large.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# A simple example of ClusterConfig object with two nodegroups:
---
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: openstudio-server2
region: us-east-1
version: "1.29"
vpc:
cidr: 192.168.0.0/16
autoAllocateIPv6: true
clusterEndpoints:
publicAccess: true
privateAccess: true
iam:
withOIDC: true
serviceAccounts:
- metadata:
name: ebs-csi-controller-sa
namespace: kube-system
wellKnownPolicies:
ebsCSIController: true
managedNodeGroups:
- name: web-node-group
instanceType: m7i.8xlarge
minSize: 0
maxSize: 2
desiredCapacity: 1
labels:
nodegroup: web-group
privateNetworking: true
iam:
withAddonPolicies:
autoScaler: true
externalDNS: true
certManager: true
ebs: true
ssh:
allow: true
# Update publicKeyPath for your public key
publicKeyPath: ~/.ssh/id_rsa.pub
volumeSize: 550
volumeType: gp3
- name: worker-node-group
instanceType: c7i.24xlarge
minSize: 0
maxSize: 50
desiredCapacity: 1
labels:
nodegroup: worker-group
privateNetworking: true
iam:
withAddonPolicies:
autoScaler: true
externalDNS: true
certManager: true
ebs: true
ssh:
allow: true
# Update publicKeyPath for your public key
publicKeyPath: ~/.ssh/id_rsa.pub
volumeSize: 400
volumeType: gp3
addons:
- name: aws-ebs-csi-driver
wellKnownPolicies: # add IAM and service account
ebsCSIController: true