gcloud-lab/modules/new-nodepool.tf

28 lines
585 B
Terraform
Raw Permalink Normal View History

2026-05-08 16:16:28 +00:00
resource "google_container_node_pool" "e4-node-pool" {
name = "devops-lab-nodepool-e4"
location = "us-central1-a"
cluster = google_container_cluster.primary.name
initial_node_count = 1
network_config {
pod_range = "pod-ranges"
}
autoscaling {
min_node_count = 1
max_node_count = 5
}
node_config {
machine_type = "e2-standard-4"
spot = false
disk_size_gb = 100
disk_type = "pd-standard"
oauth_scopes = [
"https://www.googleapis.com/auth/cloud-platform"
]
}
depends_on = [google_container_cluster.primary]
}