-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindows.yaml
More file actions
40 lines (36 loc) · 1.09 KB
/
windows.yaml
File metadata and controls
40 lines (36 loc) · 1.09 KB
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
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: non-prod-cluster
region: ap-south-1
version: "1.28"
vpc:
## Make sure that this CIDR doesn't overlaps with any other exisiting VPC with which a peering needs to be done.
cidr: "10.0.0.0/16"
nodeGroups:
- name: non-prod-nodes
availabilityZones:
- ap-south-1a
privateNetworking: true
desiredCapacity: 1
minSize: 1
maxSize: 2
instancesDistribution:
instanceTypes: ["m7a.xlarge"]
onDemandBaseCapacity: 0
amiFamily: WindowsServer2019FullContainer
iam:
withAddonPolicies:
autoScaler: true
ebs: true
attachPolicyARNs:
- arn:aws:iam::aws:policy/AmazonEKSWorkerNodePolicy
- arn:aws:iam::aws:policy/AmazonEKS_CNI_Policy
- arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryFullAccess
- arn:aws:iam::aws:policy/AmazonEKSClusterPolicy
- arn:aws:iam::aws:policy/AmazonEKSServicePolicy
- arn:aws:iam::aws:policy/AmazonS3FullAccess
ssh:
allow: true
publicKeyName: "windows-devtron-ssh"
volumeSize: 500