Ensure k8s version is 1.23 using COS.

This commit is contained in:
Corneil du Plessis
2023-02-06 16:24:49 +02:00
parent 7e3d8e590c
commit b204d38334
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
"default": {
"provider": "gke",
"region": "us-central1",
"k8s_version": "1.24",
"k8s_version": "1.23",
"machine_type": "n2-standard-8",
"pods_per_job": 1,
"ram_per_pod": 4,

View File

@@ -92,7 +92,7 @@ resource "google_container_node_pool" "nodes" {
}
disk_size_gb = var.disk_size
disk_type = "pd-ssd"
image_type = "UBUNTU_CONTAINERD"
image_type = "COS"
tags = ["stream-ci-node", var.cluster_name, "${var.cluster_name}-node"]
}
management {