Skip to content
New issue

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

Enable Service mesh feature for ASM to install in GKE #26

Merged
merged 9 commits into from
Jun 13, 2022
Next Next commit
Enable Service mesh feature for ASM to install in GKE
  • Loading branch information
Laurent Grangeau committed Jun 10, 2022
commit 7bee4a0e790c620b16cc9acf841060a516f4e873
1 change: 1 addition & 0 deletions terraform/asm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ module "asm" {
cluster_location = module.gke.location
cluster_name = module.gke.name
project_id = var.project_id
enable_mesh_feature = var.asm_enable_mesh_feature
laurentgrangeau marked this conversation as resolved.
Show resolved Hide resolved
}
5 changes: 5 additions & 0 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,8 @@ variable "asm_release_channel" {
description = "Anthos Service Mesh release channel. See https://cloud.google.com/service-mesh/docs/managed/select-a-release-channel for more information"
default = "regular"
}

variable "asm_enable_mesh_feature" {
description = "Anthos Service Mesh feature. It is required to install the different ASM CRDs."
laurentgrangeau marked this conversation as resolved.
Show resolved Hide resolved
default = "true"
laurentgrangeau marked this conversation as resolved.
Show resolved Hide resolved
}