Skip to content

Commit

Permalink
Merge pull request #294 from aws-samples/amanshanbhag-patch-1
Browse files Browse the repository at this point in the history
Add files via upload
  • Loading branch information
amanshanbhag authored May 1, 2024
2 parents 4aaea11 + 26e6175 commit 091d536
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions 1.architectures/4.amazon-eks/eks-p5-odcr-vpc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit 091d536

Please sign in to comment.