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

fix: upgrade gke module to avoid TPGv5.44.0 with Autopilot #806

Merged
merged 2 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 infrastructure/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ terraform {
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
source = "hashicorp/google-beta"
version = ">= 5.40.0, != 5.44.0, !=6.2.0"
genlu2011 marked this conversation as resolved.
Show resolved Hide resolved
}
helm = {
source = "hashicorp/helm"
Expand Down
2 changes: 1 addition & 1 deletion modules/gke-autopilot-private-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google//modules/beta-autopilot-private-cluster"
version = "32.0.1"
version = "33.0.0"
project_id = var.project_id
regional = var.cluster_regional
name = var.cluster_name
Expand Down
2 changes: 1 addition & 1 deletion modules/gke-autopilot-public-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google//modules/beta-autopilot-public-cluster"
version = "32.0.1"
version = "33.0.0"
project_id = var.project_id
regional = var.cluster_regional
name = var.cluster_name
Expand Down
2 changes: 1 addition & 1 deletion modules/gke-standard-private-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google//modules/private-cluster"
version = "32.0.1"
version = "33.0.0"
project_id = var.project_id
regional = var.cluster_regional
name = var.cluster_name
Expand Down
2 changes: 1 addition & 1 deletion modules/gke-standard-public-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google"
version = "32.0.1"
version = "33.0.0"
project_id = var.project_id
regional = var.cluster_regional
name = var.cluster_name
Expand Down
Loading