We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is no node-pool recreation after editing the gpu_driver_version field
gpu_driver_version
module.gke_cluster.google_container_node_pool.pools["my-node-pool"]: Creating... ╷ │ Error: resource - projects/myproject/locations/us-central1/clusters/my-cluster/nodePools/my-node-pool-XXXX - already exists │ │ with module.gke_cluster.google_container_node_pool.pools["my-node-pool"], │ on .terraform/modules/gke_cluster/modules/beta-public-cluster-update-variant/cluster.tf line 565, in resource "google_container_node_pool" "pools": │ 565: resource "google_container_node_pool" "pools" { │ ╵
module "gke_cluster" { source = "terraform-google-modules/kubernetes-engine/google//modules/beta-public-cluster-update-variant" version = "30.2.0" # Cluster basics project_id = google_project.this.project_id name = "my-cluster" region = "us-central-1" ## Node Pools remove_default_node_pool = true initial_node_count = 1 node_pools = [{ name = "my-node-pool" accelerator_count = 1 accelerator_type = "nvidia-tesla-t4" gpu_driver_version = "DEFAULT" }] }
Terraform v1.5.7 on linux_amd64
Seems to be fixed by #1913
The text was updated successfully, but these errors were encountered:
this can be closed.
cc: @apeabody
Sorry, something went wrong.
Closed by #1874
No branches or pull requests
TL;DR
There is no node-pool recreation after editing the
gpu_driver_version
fieldExpected behavior
Observed behavior
gpu_driver_version
field. This explains the failureTerraform Configuration
Terraform Version
Additional information
Seems to be fixed by #1913
The text was updated successfully, but these errors were encountered: