We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2b31a9 commit bf4cd44Copy full SHA for bf4cd44
premerge/main.tf
@@ -92,6 +92,13 @@ resource "google_container_node_pool" "llvm_premerge_linux" {
92
"premerge-platform" : "linux"
93
}
94
disk_size_gb = 200
95
+ # Terraform wants to recreate the node pool everytime whe running
96
+ # terraform apply unless we explicitly set this.
97
+ # TODO(boomanaiden154): Look into why terraform is doing this so we do
98
+ # not need this hack.
99
+ resource_labels = {
100
+ "goog-gke-node-pool-provisioning-model" = "on-demand"
101
+ }
102
103
104
0 commit comments