terraform-google-kubernetes-engine
terraform-google-kubernetes-engine copied to clipboard
Create a Google Kubernetes Engine cluster (stable)
I'm using the terraform to manage the GKE cluster setup. I want to update the instance size of the worker nodes that would re-create google_container_node_pol. But that steps failing because...
## What I trying to accomplish I need to configure istio addon ``` module "cluster" { disable_istio_config = "false" } ``` # Fix ``` addons_config { istio_config { disable =...
My input: ``` module "gke-cluster" { source = "google-terraform-modules/kubernetes-engine/google" version = "1.19.1" general = { name = "${var.cluster_name}" env = "${var.environment}" zone = "${var.gcp_zone}" } master = { enable_kubernetes_alpha =...
eg. initial state. ``` node_pools = [ { name = "primary-node-pool" machine_type = "n1-standard-2" }, { name = "secondary-node-pool" machine_type = "n1-standard-2" }, ] ``` later in the lifecycle, if...
How do I use this with shared vpcs from a different project?
Wanted to let you know that I see the same behaviour as in [#4](https://github.com/google-terraform-modules/terraform-google-kubernetes-engine/issues/4). ### Terraform Version Terraform v0.11.8 + provider.google v1.17.1 + google-terraform-modules/kubernetes-engine/google 1.15.0 Adding 'project' fixes this. As...