-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathcluster-update-nodegroups.yml
More file actions
45 lines (44 loc) · 921 Bytes
/
cluster-update-nodegroups.yml
File metadata and controls
45 lines (44 loc) · 921 Bytes
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
---
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: eksdemo
region: us-east-1
version: "1.19"
managedNodeGroups:
- name: workers-1-18
instanceType: t2.medium
privateNetworking: true
desiredCapacity: 2
minSize: 2
maxSize: 4
volumeSize: 10
ssh:
allow: true
publicKeyName: devops-8am
labels: {role: worker}
tags:
nodegroup-role: worker
iam:
withAddonPolicies:
externalDNS: true
certManager: true
autoScaler: true
- name: workers-1-19
instanceType: t2.medium
privateNetworking: true
desiredCapacity: 2
minSize: 2
maxSize: 4
volumeSize: 10
ssh:
allow: true
publicKeyName: devops-8am
labels: {role: worker}
tags:
nodegroup-role: worker
iam:
withAddonPolicies:
externalDNS: true
certManager: true
autoScaler: true