2026-01-03 03:47:18 +00:00
|
|
|
|
|
|
|
|
resource "google_container_node_pool" "cluster" {
|
|
|
|
|
name = "devops-lab-nodepool"
|
|
|
|
|
location = "us-central1-a"
|
2026-01-05 01:18:37 +00:00
|
|
|
cluster = google_container_cluster.primary.name
|
2026-01-03 03:47:18 +00:00
|
|
|
|
|
|
|
|
network_config {
|
|
|
|
|
pod_range = "pod-ranges-ext"
|
|
|
|
|
}
|
|
|
|
|
initial_node_count = 2
|
2026-01-05 01:18:37 +00:00
|
|
|
|
2026-01-03 03:47:18 +00:00
|
|
|
autoscaling {
|
|
|
|
|
min_node_count = 1
|
|
|
|
|
max_node_count = 16
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
node_config {
|
|
|
|
|
machine_type = "e2-standard-2"
|
2026-01-05 01:18:37 +00:00
|
|
|
disk_size_gb = 25
|
2026-01-03 03:47:18 +00:00
|
|
|
disk_type = "pd-ssd"
|
|
|
|
|
oauth_scopes = [
|
|
|
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
|
|
|
]
|
|
|
|
|
}
|
2026-01-05 01:18:37 +00:00
|
|
|
depends_on = [google_container_cluster.primary]
|
2026-01-03 03:47:18 +00:00
|
|
|
|
|
|
|
|
}
|