-
Notifications
You must be signed in to change notification settings - Fork 92
/
eks-p4de-odcr.yaml
54 lines (47 loc) · 1.21 KB
/
eks-p4de-odcr.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
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
# Update cluster name, region, and eks version if needed
metadata:
name: eks-p4de-odcr
version: "1.28"
region: PLACEHOLDER_AWS_REGION
# List availability zones where cluster subnets will be created
availabilityZones:
- PLACEHOLDER_AZ_1
- PLACEHOLDER_AZ_2
# Fully-managed nodegroups
managedNodeGroups:
# Nodegroup for system pods
- name: sys
instanceType: c5.2xlarge
desiredCapacity: 1
iam:
withAddonPolicies:
autoScaler: true
cloudWatch: true
# GPU nodegroup
# Update capacityReservationID below
# Specify the availability zone matching the capacity reservation
- name: p4de-odcr
instanceType: p4de.24xlarge
instancePrefix: p4de-odcr
privateNetworking: true
efaEnabled: true
minSize: 0
desiredCapacity: 2
maxSize: 10
volumeSize: 500
availabilityZones: ["PLACEHOLDER_AZ_2"]
capacityReservation:
capacityReservationTarget:
capacityReservationID: "PLACEHOLDER_CAPACITY_RESERVATION_ID"
iam:
withAddonPolicies:
autoScaler: true
cloudWatch: true
ebs: true
fsx: true
# Self-managed nodegroups
#nodeGroups:
iam:
withOIDC: true