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

Revert to using default stable channel Kubernetes version #117

Merged
Show file tree
Hide file tree
Changes from all commits
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
28 changes: 14 additions & 14 deletions terraform/gke/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions terraform/modules/autoscaler-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ module "workload_identity_scaler" {

module "cluster" {
source = "terraform-google-modules/kubernetes-engine/google//modules/private-cluster"
version = "22.1.0"
version = "26.1.1"
project_id = var.project_id
name = var.name
region = var.region
network = google_compute_network.network.name
subnetwork = google_compute_subnetwork.subnetwork.name
kubernetes_version = var.kubernetes_version
release_channel = var.release_channel
master_ipv4_cidr_block = var.ip_range_master
ip_range_pods = var.ip_range_pods
ip_range_services = var.ip_range_services
Expand Down
5 changes: 0 additions & 5 deletions terraform/modules/autoscaler-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ variable "region" {
description = "The name of the region to run the cluster"
}

variable "kubernetes_version" {
description = "Version string for the master Kubernetes version"
default = "1.23"
}

variable "ip_range_master" {
description = "The range for the private master"
}
Expand Down