Skip to content

Commit

Permalink
⏫ Airflow: Production EKS 1.27 -> 1.28 (#4519)
Browse files Browse the repository at this point in the history
* 🔧 Upgrade EKS: 1.27 -> 1.28

* 🔧 Update eks add-ons

* 🔧 Upgrade Nodes via launch templates
  • Loading branch information
Gary-H9 authored Jun 11, 2024
1 parent 6941235 commit 64223b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ resource "aws_eks_cluster" "airflow_prod_eks_cluster" {
"controllerManager",
"scheduler",
]
version = "1.27"
version = "1.28"

vpc_config {
subnet_ids = aws_subnet.prod_private_subnet[*].id
Expand Down Expand Up @@ -310,7 +310,7 @@ resource "aws_eks_addon" "coredns_dev" {
resource "aws_eks_addon" "kube_proxy_prod" {
cluster_name = var.prod_eks_cluster_name
addon_name = "kube-proxy"
addon_version = "v1.27.12-eksbuild.5"
addon_version = "v1.28.8-eksbuild.5"
resolve_conflicts_on_create = "OVERWRITE"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ resource "aws_launch_template" "dev_high_memory" {

resource "aws_launch_template" "prod_standard" {
name = "prod_standard"
image_id = "ami-0701694cedbb71f26"
image_id = "ami-0246ad1c10bc9a7ab"
instance_type = "t3a.large"

disable_api_stop = false
Expand Down Expand Up @@ -156,7 +156,7 @@ resource "aws_launch_template" "prod_standard" {

resource "aws_launch_template" "prod_high_memory" {
name = "prod_high_memory"
image_id = "ami-0701694cedbb71f26"
image_id = "ami-0246ad1c10bc9a7ab"
instance_type = "r6i.8xlarge"

disable_api_stop = false
Expand Down

0 comments on commit 64223b2

Please sign in to comment.