Skip to content

Commit

Permalink
feat: Update EKS to 1.25 (#895)
Browse files Browse the repository at this point in the history
* Update EKS to 1.25

Also updates the kube proxy addon version appropriately too

* bump ami
  • Loading branch information
michaeljguarino authored Jan 23, 2024
1 parent 170b41f commit 516dbb7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bootstrap/terraform/aws-bootstrap/deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions bootstrap/terraform/aws-bootstrap/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand All @@ -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"
}

Expand Down Expand Up @@ -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 = {}
Expand Down

0 comments on commit 516dbb7

Please sign in to comment.