Skip to content

Commit

Permalink
feat: Upgraded eks version from 1.27 to 1.28 (#226)
Browse files Browse the repository at this point in the history
Added add-on version for eks 1.28
  • Loading branch information
amanpruthi authored Jun 24, 2024
1 parent e651256 commit 4d24df5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions modules/app_eks/add-ons.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ resource "aws_iam_role" "oidc" {



### add-ons
### add-ons for eks version 1.28

resource "aws_eks_addon" "aws_efs_csi_driver" {
depends_on = [
aws_eks_addon.vpc_cni
Expand Down Expand Up @@ -66,14 +67,14 @@ resource "aws_eks_addon" "kube_proxy" {
]
cluster_name = var.namespace
addon_name = "kube-proxy"
addon_version = "v1.27.12-eksbuild.5"
addon_version = "v1.28.8-eksbuild.5"
resolve_conflicts = "OVERWRITE"
}

resource "aws_eks_addon" "vpc_cni" {
cluster_name = var.namespace
addon_name = "vpc-cni"
addon_version = "v1.18.2-eksbuild.1"
addon_version = "v1.18.0-eksbuild.1"
resolve_conflicts = "OVERWRITE"
service_account_role_arn = aws_iam_role.oidc.arn
}

0 comments on commit 4d24df5

Please sign in to comment.