Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ Then perform the following commands on the root folder:
| gce\_pd\_csi\_driver | Whether this cluster should enable the Google Compute Engine Persistent Disk Container Storage Interface (CSI) Driver. | `bool` | `true` | no |
| gcp\_public\_cidrs\_access\_enabled | Allow access through Google Cloud public IP addresses | `bool` | `null` | no |
| gcs\_fuse\_csi\_driver | Whether GCE FUSE CSI driver is enabled for this cluster. | `bool` | `false` | no |
| gke\_auto\_upgrade\_config\_patch\_mode | The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel. | `string` | `null` | no |
| gke\_backup\_agent\_config | Whether Backup for GKE agent is enabled for this cluster. | `bool` | `false` | no |
| grant\_registry\_access | Grants created cluster-specific service account storage.objectViewer and artifactregistry.reader roles. | `bool` | `false` | no |
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | `bool` | `true` | no |
Expand Down
8 changes: 8 additions & 0 deletions autogen/main/cluster.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ resource "google_container_cluster" "primary" {
}
}

dynamic "gke_auto_upgrade_config" {
for_each = var.gke_auto_upgrade_config_patch_mode != null ? [1] : []

content {
patch_mode = var.gke_auto_upgrade_config_patch_mode
}
}

dynamic "cost_management_config" {
for_each = var.enable_cost_allocation ? [1] : []
content {
Expand Down
6 changes: 6 additions & 0 deletions autogen/main/variables.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,12 @@ variable "enable_cilium_clusterwide_network_policy" {
default = false
}

variable "gke_auto_upgrade_config_patch_mode" {
type = string
description = "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
default = null
}

variable "in_transit_encryption_config" {
type = string
description = "Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`."
Expand Down
12 changes: 6 additions & 6 deletions autogen/main/versions.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -24,33 +24,33 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
{% elif beta_cluster and autopilot_cluster %}
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
{% elif autopilot_cluster %}
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
{% else %}
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
{% endif %}
kubernetes = {
Expand Down
8 changes: 8 additions & 0 deletions cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ resource "google_container_cluster" "primary" {
}
}

dynamic "gke_auto_upgrade_config" {
for_each = var.gke_auto_upgrade_config_patch_mode != null ? [1] : []

content {
patch_mode = var.gke_auto_upgrade_config_patch_mode
}
}

dynamic "cost_management_config" {
for_each = var.enable_cost_allocation ? [1] : []
content {
Expand Down
3 changes: 3 additions & 0 deletions metadata.display.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ spec:
gcs_fuse_csi_driver:
name: gcs_fuse_csi_driver
title: Gcs Fuse Csi Driver
gke_auto_upgrade_config_patch_mode:
name: gke_auto_upgrade_config_patch_mode
title: Gke Auto Upgrade Config Patch Mode
gke_backup_agent_config:
name: gke_backup_agent_config
title: Gke Backup Agent Config
Expand Down
3 changes: 3 additions & 0 deletions metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,9 @@ spec:
description: Enable Cilium Cluster Wide Network Policies on the cluster
varType: bool
defaultValue: false
- name: gke_auto_upgrade_config_patch_mode
description: "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
varType: string
- name: in_transit_encryption_config
description: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
varType: string
Expand Down
1 change: 1 addition & 0 deletions modules/beta-autopilot-private-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ Then perform the following commands on the root folder:
| fleet\_project\_grant\_service\_agent | (Optional) Grant the fleet project service identity the `roles/gkehub.serviceAgent` and `roles/gkehub.crossProjectServiceAgent` roles. | `bool` | `false` | no |
| gateway\_api\_channel | The gateway api channel of this cluster. Accepted values are `CHANNEL_STANDARD` and `CHANNEL_DISABLED`. | `string` | `null` | no |
| gcp\_public\_cidrs\_access\_enabled | Allow access through Google Cloud public IP addresses | `bool` | `null` | no |
| gke\_auto\_upgrade\_config\_patch\_mode | The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel. | `string` | `null` | no |
| gke\_backup\_agent\_config | Whether Backup for GKE agent is enabled for this cluster. | `bool` | `false` | no |
| grant\_registry\_access | Grants created cluster-specific service account storage.objectViewer and artifactregistry.reader roles. | `bool` | `false` | no |
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | `bool` | `true` | no |
Expand Down
8 changes: 8 additions & 0 deletions modules/beta-autopilot-private-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ resource "google_container_cluster" "primary" {
}
}

dynamic "gke_auto_upgrade_config" {
for_each = var.gke_auto_upgrade_config_patch_mode != null ? [1] : []

content {
patch_mode = var.gke_auto_upgrade_config_patch_mode
}
}

dynamic "cost_management_config" {
for_each = var.enable_cost_allocation ? [1] : []
content {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ spec:
gcp_public_cidrs_access_enabled:
name: gcp_public_cidrs_access_enabled
title: Gcp Public Cidrs Access Enabled
gke_auto_upgrade_config_patch_mode:
name: gke_auto_upgrade_config_patch_mode
title: Gke Auto Upgrade Config Patch Mode
gke_backup_agent_config:
name: gke_backup_agent_config
title: Gke Backup Agent Config
Expand Down
3 changes: 3 additions & 0 deletions modules/beta-autopilot-private-cluster/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,9 @@ spec:
description: Enable Cilium Cluster Wide Network Policies on the cluster
varType: bool
defaultValue: false
- name: gke_auto_upgrade_config_patch_mode
description: "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
varType: string
- name: in_transit_encryption_config
description: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
varType: string
Expand Down
6 changes: 6 additions & 0 deletions modules/beta-autopilot-private-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,12 @@ variable "enable_cilium_clusterwide_network_policy" {
default = false
}

variable "gke_auto_upgrade_config_patch_mode" {
type = string
description = "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
default = null
}

variable "in_transit_encryption_config" {
type = string
description = "Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`."
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-autopilot-private-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
1 change: 1 addition & 0 deletions modules/beta-autopilot-public-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ Then perform the following commands on the root folder:
| fleet\_project\_grant\_service\_agent | (Optional) Grant the fleet project service identity the `roles/gkehub.serviceAgent` and `roles/gkehub.crossProjectServiceAgent` roles. | `bool` | `false` | no |
| gateway\_api\_channel | The gateway api channel of this cluster. Accepted values are `CHANNEL_STANDARD` and `CHANNEL_DISABLED`. | `string` | `null` | no |
| gcp\_public\_cidrs\_access\_enabled | Allow access through Google Cloud public IP addresses | `bool` | `null` | no |
| gke\_auto\_upgrade\_config\_patch\_mode | The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel. | `string` | `null` | no |
| gke\_backup\_agent\_config | Whether Backup for GKE agent is enabled for this cluster. | `bool` | `false` | no |
| grant\_registry\_access | Grants created cluster-specific service account storage.objectViewer and artifactregistry.reader roles. | `bool` | `false` | no |
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | `bool` | `true` | no |
Expand Down
8 changes: 8 additions & 0 deletions modules/beta-autopilot-public-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ resource "google_container_cluster" "primary" {
}
}

dynamic "gke_auto_upgrade_config" {
for_each = var.gke_auto_upgrade_config_patch_mode != null ? [1] : []

content {
patch_mode = var.gke_auto_upgrade_config_patch_mode
}
}

dynamic "cost_management_config" {
for_each = var.enable_cost_allocation ? [1] : []
content {
Expand Down
3 changes: 3 additions & 0 deletions modules/beta-autopilot-public-cluster/metadata.display.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ spec:
gcp_public_cidrs_access_enabled:
name: gcp_public_cidrs_access_enabled
title: Gcp Public Cidrs Access Enabled
gke_auto_upgrade_config_patch_mode:
name: gke_auto_upgrade_config_patch_mode
title: Gke Auto Upgrade Config Patch Mode
gke_backup_agent_config:
name: gke_backup_agent_config
title: Gke Backup Agent Config
Expand Down
3 changes: 3 additions & 0 deletions modules/beta-autopilot-public-cluster/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,9 @@ spec:
description: Enable Cilium Cluster Wide Network Policies on the cluster
varType: bool
defaultValue: false
- name: gke_auto_upgrade_config_patch_mode
description: "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
varType: string
- name: in_transit_encryption_config
description: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
varType: string
Expand Down
6 changes: 6 additions & 0 deletions modules/beta-autopilot-public-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,12 @@ variable "enable_cilium_clusterwide_network_policy" {
default = false
}

variable "gke_auto_upgrade_config_patch_mode" {
type = string
description = "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
default = null
}

variable "in_transit_encryption_config" {
type = string
description = "Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`."
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-autopilot-public-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
1 change: 1 addition & 0 deletions modules/beta-private-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ Then perform the following commands on the root folder:
| gce\_pd\_csi\_driver | Whether this cluster should enable the Google Compute Engine Persistent Disk Container Storage Interface (CSI) Driver. | `bool` | `true` | no |
| gcp\_public\_cidrs\_access\_enabled | Allow access through Google Cloud public IP addresses | `bool` | `null` | no |
| gcs\_fuse\_csi\_driver | Whether GCE FUSE CSI driver is enabled for this cluster. | `bool` | `false` | no |
| gke\_auto\_upgrade\_config\_patch\_mode | The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel. | `string` | `null` | no |
| gke\_backup\_agent\_config | Whether Backup for GKE agent is enabled for this cluster. | `bool` | `false` | no |
| grant\_registry\_access | Grants created cluster-specific service account storage.objectViewer and artifactregistry.reader roles. | `bool` | `false` | no |
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | `bool` | `true` | no |
Expand Down
8 changes: 8 additions & 0 deletions modules/beta-private-cluster-update-variant/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ resource "google_container_cluster" "primary" {
}
}

dynamic "gke_auto_upgrade_config" {
for_each = var.gke_auto_upgrade_config_patch_mode != null ? [1] : []

content {
patch_mode = var.gke_auto_upgrade_config_patch_mode
}
}

dynamic "cost_management_config" {
for_each = var.enable_cost_allocation ? [1] : []
content {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ spec:
gcs_fuse_csi_driver:
name: gcs_fuse_csi_driver
title: Gcs Fuse Csi Driver
gke_auto_upgrade_config_patch_mode:
name: gke_auto_upgrade_config_patch_mode
title: Gke Auto Upgrade Config Patch Mode
gke_backup_agent_config:
name: gke_backup_agent_config
title: Gke Backup Agent Config
Expand Down
3 changes: 3 additions & 0 deletions modules/beta-private-cluster-update-variant/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,9 @@ spec:
description: Enable Cilium Cluster Wide Network Policies on the cluster
varType: bool
defaultValue: false
- name: gke_auto_upgrade_config_patch_mode
description: "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
varType: string
- name: in_transit_encryption_config
description: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
varType: string
Expand Down
6 changes: 6 additions & 0 deletions modules/beta-private-cluster-update-variant/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,12 @@ variable "enable_cilium_clusterwide_network_policy" {
default = false
}

variable "gke_auto_upgrade_config_patch_mode" {
type = string
description = "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
default = null
}

variable "in_transit_encryption_config" {
type = string
description = "Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`."
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-private-cluster-update-variant/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
1 change: 1 addition & 0 deletions modules/beta-private-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ Then perform the following commands on the root folder:
| gce\_pd\_csi\_driver | Whether this cluster should enable the Google Compute Engine Persistent Disk Container Storage Interface (CSI) Driver. | `bool` | `true` | no |
| gcp\_public\_cidrs\_access\_enabled | Allow access through Google Cloud public IP addresses | `bool` | `null` | no |
| gcs\_fuse\_csi\_driver | Whether GCE FUSE CSI driver is enabled for this cluster. | `bool` | `false` | no |
| gke\_auto\_upgrade\_config\_patch\_mode | The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel. | `string` | `null` | no |
| gke\_backup\_agent\_config | Whether Backup for GKE agent is enabled for this cluster. | `bool` | `false` | no |
| grant\_registry\_access | Grants created cluster-specific service account storage.objectViewer and artifactregistry.reader roles. | `bool` | `false` | no |
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | `bool` | `true` | no |
Expand Down
8 changes: 8 additions & 0 deletions modules/beta-private-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ resource "google_container_cluster" "primary" {
}
}

dynamic "gke_auto_upgrade_config" {
for_each = var.gke_auto_upgrade_config_patch_mode != null ? [1] : []

content {
patch_mode = var.gke_auto_upgrade_config_patch_mode
}
}

dynamic "cost_management_config" {
for_each = var.enable_cost_allocation ? [1] : []
content {
Expand Down
3 changes: 3 additions & 0 deletions modules/beta-private-cluster/metadata.display.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ spec:
gcs_fuse_csi_driver:
name: gcs_fuse_csi_driver
title: Gcs Fuse Csi Driver
gke_auto_upgrade_config_patch_mode:
name: gke_auto_upgrade_config_patch_mode
title: Gke Auto Upgrade Config Patch Mode
gke_backup_agent_config:
name: gke_backup_agent_config
title: Gke Backup Agent Config
Expand Down
3 changes: 3 additions & 0 deletions modules/beta-private-cluster/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,9 @@ spec:
description: Enable Cilium Cluster Wide Network Policies on the cluster
varType: bool
defaultValue: false
- name: gke_auto_upgrade_config_patch_mode
description: "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
varType: string
- name: in_transit_encryption_config
description: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
varType: string
Expand Down
6 changes: 6 additions & 0 deletions modules/beta-private-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,12 @@ variable "enable_cilium_clusterwide_network_policy" {
default = false
}

variable "gke_auto_upgrade_config_patch_mode" {
type = string
description = "The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel."
default = null
}

variable "in_transit_encryption_config" {
type = string
description = "Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`."
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-private-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 6.41.0, < 7"
version = ">= 6.42.0, < 7"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
1 change: 1 addition & 0 deletions modules/beta-public-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ Then perform the following commands on the root folder:
| gce\_pd\_csi\_driver | Whether this cluster should enable the Google Compute Engine Persistent Disk Container Storage Interface (CSI) Driver. | `bool` | `true` | no |
| gcp\_public\_cidrs\_access\_enabled | Allow access through Google Cloud public IP addresses | `bool` | `null` | no |
| gcs\_fuse\_csi\_driver | Whether GCE FUSE CSI driver is enabled for this cluster. | `bool` | `false` | no |
| gke\_auto\_upgrade\_config\_patch\_mode | The selected auto-upgrade patch type. Accepted values are: `ACCELERATED`: Upgrades to the latest available patch version in a given minor and release channel. | `string` | `null` | no |
| gke\_backup\_agent\_config | Whether Backup for GKE agent is enabled for this cluster. | `bool` | `false` | no |
| grant\_registry\_access | Grants created cluster-specific service account storage.objectViewer and artifactregistry.reader roles. | `bool` | `false` | no |
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | `bool` | `true` | no |
Expand Down
Loading