tf-gke-test/gke.tf

42 lines
1.2 KiB
Terraform
Raw Normal View History

2023-05-03 14:52:20 +02:00
# GKE cluster
resource "google_container_cluster" "primary" {
name = "${var.project}-gke"
location = var.region
# We can't create a cluster with no node pool defined, but we want to only use
# separately managed node pools. So we create the smallest possible default
# node pool and immediately delete it.
remove_default_node_pool = true
initial_node_count = 1
2024-05-05 11:35:15 +02:00
network = google_compute_network.vpc.name
subnetwork = google_compute_subnetwork.subnet.name
# min_master_version = "1.26.5-gke.1200"
2023-05-03 14:52:20 +02:00
}
# Separately Managed Node Pool
resource "google_container_node_pool" "primary_nodes" {
name = google_container_cluster.primary.name
location = var.region
cluster = google_container_cluster.primary.name
node_count = var.gke_num_nodes
node_config {
oauth_scopes = [
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring",
]
labels = {
env = var.project
}
preemptible = true
machine_type = "custom-2-4096" # 1 core too low for Prometheus...
tags = ["gke-node", "${var.project}-gke"]
metadata = {
disable-legacy-endpoints = "true"
}
}
}