-
Notifications
You must be signed in to change notification settings - Fork 89
/
eks-p5-odcr-vpc.yaml
46 lines (42 loc) · 1.04 KB
/
eks-p5-odcr-vpc.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
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: eks-p5-odcr-vpc
region: PLACEHOLDER_AWS_REGION
version: "1.29"
# Substitute vpc and subnet ids below
vpc:
id: PLACEHOLDER_VPC_ID
subnets:
private:
private-one:
id: PLACEHOLDER_SUBNET_PRIVATE_1
private-two:
id: PLACEHOLDER_SUBNET_PRIVATE_2
public:
public-one:
id: PLACEHOLDER_SUBNET_PUBLIC_1
public-two:
id: PLACEHOLDER_SUBNET_PUBLIC_2
# Fully-managed nodegroups
managedNodeGroups:
# GPU nodegroup
# Update capacityReservationID below
- name: p5-ocdr
instanceType: p5.48xlarge
instancePrefix: p5-odcr-nodes
privateNetworking: true
efaEnabled: true
minSize: 0
desiredCapacity: 1
maxSize: 10
volumeSize: 500
capacityReservation:
capacityReservationTarget:
capacityReservationID: "cr-xxxxxxxxxx"
iam:
withAddonPolicies:
autoScaler: true
cloudWatch: true
ebs: true
fsx: true