Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump Karpenter module to 20.24.3 #82

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion terraform/foundation-stack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,10 @@ module "eks" {
module "karpenter" {
count = var.stack_create ? 1 : 0
source = "terraform-aws-modules/eks/aws//modules/karpenter"
version = "20.8.5"
version = "20.24.3"
cluster_name = module.eks.cluster_name
enable_irsa = true
enable_v1_permissions = true
enable_pod_identity = false # TODO: PR because it doesn't work in govcloud
queue_name = var.stack_name
irsa_oidc_provider_arn = module.eks.oidc_provider_arn
Expand Down