Skip to content

Commit

Permalink
Karpenter Helm Chart (#256)
Browse files Browse the repository at this point in the history
* Karpenter Helm Chart - includes prerequisites - IAM_Role, Tagging, AWS_AUth as well

* Update values.yaml

Updated Values.yaml

* Added Dependency Chart, updated values.yaml

* Added template folder

* Removed extra Files

* Incorporated Review Comments
  • Loading branch information
hiteshmakol1 authored Dec 27, 2024
1 parent 03d5a2d commit b84aaf4
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 0 deletions.
23 changes: 23 additions & 0 deletions charts/karpenter/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
7 changes: 7 additions & 0 deletions charts/karpenter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: v2
name: ot-karpenter
version: 0.1.0
dependencies:
- name: karpenter
version: 1.1.1
repository: oci://public.ecr.aws/karpenter
Empty file.
23 changes: 23 additions & 0 deletions charts/karpenter/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Custom values for your chart
clusterName: ""
awsPartition: ""
awsAccountId: 3849
karpenterVersion:

# Karpenter chart overrides
karpenter:
settings:
clusterName: ""
# interruptionQueue: test-demo-cluster
serviceAccount:
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::3849:role/KarpenterControllerRole-test-demo-cluster
controller:
resources:
requests:
cpu: "1"
memory: "1Gi"
limits:
cpu: "1"
memory: "1Gi"

0 comments on commit b84aaf4

Please sign in to comment.