Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
dt-dilip committed Feb 7, 2024
1 parent d3676de commit 72b2062
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
File renamed without changes
31 changes: 30 additions & 1 deletion docs/aws/eks-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,48 @@ vpc:

managedNodeGroups:
- name: cdefense
# labels: { label: cdefense }
labels: { label: cdefense }
volumeEncrypted: true
disableIMDSv1: true
instanceType: "t3.xlarge"
desiredCapacity: 1
privateNetworking: true
minSize: 1
maxSize: 4
iam:
withAddonPolicies:
autoScaler: true
tags:
k8s.io/cluster-autoscaler/enabled: "true"
k8s.io/cluster-autoscaler/<CLUSTER-NAME>: "owned"
- name: external
labels: { label: external }
volumeEncrypted: true
disableIMDSv1: true
instanceType: "t3.medium"
desiredCapacity: 1
privateNetworking: true
minSize: 1
maxSize: 3
iam:
withAddonPolicies:
autoScaler: true
tags:
k8s.io/cluster-autoscaler/enabled: "true"
k8s.io/cluster-autoscaler/<CLUSTER-NAME>: "owned"
- name: jobs
labels: { label: job }
spot: true
volumeEncrypted: true
disableIMDSv1: true
instanceTypes: ["t3.xlarge"]
desiredCapacity: 1
privateNetworking: true
minSize: 1
maxSize: 4
iam:
withAddonPolicies:
autoScaler: true
tags:
k8s.io/cluster-autoscaler/enabled: "true"
k8s.io/cluster-autoscaler/<CLUSTER-NAME>: "owned"

0 comments on commit 72b2062

Please sign in to comment.