From 32ff8ea558d57992cae9f3ba0ce749889af44847 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Mon, 15 Jan 2024 12:18:11 -0500 Subject: [PATCH 1/2] Update EKS to 1.25 Also updates the kube proxy addon version appropriately too --- bootstrap/terraform/aws-bootstrap/deps.yaml | 2 +- bootstrap/terraform/aws-bootstrap/variables.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap/terraform/aws-bootstrap/deps.yaml b/bootstrap/terraform/aws-bootstrap/deps.yaml index 8b042feac..f0c220e85 100644 --- a/bootstrap/terraform/aws-bootstrap/deps.yaml +++ b/bootstrap/terraform/aws-bootstrap/deps.yaml @@ -4,7 +4,7 @@ metadata: description: Creates an EKS cluster and prepares it for bootstrapping version: 0.1.55 spec: - breaking: false + breaking: true dependencies: [] providers: - aws diff --git a/bootstrap/terraform/aws-bootstrap/variables.tf b/bootstrap/terraform/aws-bootstrap/variables.tf index 0cc2c41a8..8c8a65db4 100644 --- a/bootstrap/terraform/aws-bootstrap/variables.tf +++ b/bootstrap/terraform/aws-bootstrap/variables.tf @@ -56,7 +56,7 @@ variable "cluster_log_retention_in_days" { variable "kubernetes_version" { type = string description = "Kubernetes version to use for the cluster" - default = "1.24" + default = "1.25" } variable "vpc_cni_addon_version" { @@ -73,7 +73,7 @@ variable "core_dns_addon_version" { variable "kube_proxy_addon_version" { type = string - default = "v1.24.15-eksbuild.2" + default = "v1.25.16-minimal-eksbuild.1" description = "The version of the kube-proxy addon to use" } From d9e7af4c094eb348529f617c8272cc1f26ea08fa Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Mon, 15 Jan 2024 15:16:30 -0500 Subject: [PATCH 2/2] bump ami --- bootstrap/terraform/aws-bootstrap/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/terraform/aws-bootstrap/variables.tf b/bootstrap/terraform/aws-bootstrap/variables.tf index 8c8a65db4..41ff2c839 100644 --- a/bootstrap/terraform/aws-bootstrap/variables.tf +++ b/bootstrap/terraform/aws-bootstrap/variables.tf @@ -253,7 +253,7 @@ variable "node_groups_defaults" { instance_types = ["t3.large", "t3a.large"] disk_size = 50 - ami_release_version = "1.24.15-20230816" + ami_release_version = "1.25.16-20240110" force_update_version = true ami_type = "AL2_x86_64" k8s_labels = {}