Skip to content

Commit fd233e5

Browse files
creadbharathkkb
andauthored
feat!: Add support for disk_size and disk_type for cluster_autoscaling. (terraform-google-modules#1693)
Co-authored-by: Bharath KKB <[email protected]>
1 parent f077184 commit fd233e5

File tree

40 files changed

+167
-61
lines changed

40 files changed

+167
-61
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ Sub modules are provided for creating private clusters, beta private clusters, a
1212

1313
## Compatibility
1414

15-
This module is meant for use with Terraform 0.13+ and tested using Terraform 1.0+.
16-
If you find incompatibilities using Terraform `>=0.13`, please open an issue.
15+
This module is meant for use with Terraform 1.3+ and tested using Terraform 1.0+.
16+
If you find incompatibilities using Terraform `>=1.3`, please open an issue.
1717

18-
If you haven't [upgraded][terraform-0.13-upgrade] and need a Terraform
18+
If you haven't [upgraded to 1.3][terraform-1.3-upgrade] and need a Terraform
19+
0.13.x-compatible version of this module, the last released version
20+
intended for Terraform 0.13.x is [27.0.0].
21+
22+
If you haven't [upgraded to 0.13][terraform-0.13-upgrade] and need a Terraform
1923
0.12.x-compatible version of this module, the last released version
2024
intended for Terraform 0.12.x is [12.3.0].
2125

@@ -131,7 +135,7 @@ Then perform the following commands on the root folder:
131135
| add\_master\_webhook\_firewall\_rules | Create master\_webhook firewall rules for ports defined in `firewall_inbound_ports` | `bool` | `false` | no |
132136
| add\_shadow\_firewall\_rules | Create GKE shadow firewall (the same as default firewall rules with firewall logs enabled). | `bool` | `false` | no |
133137
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format [email protected] | `string` | `null` | no |
134-
| cluster\_autoscaling | Cluster autoscaling configuration. See [more details](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#clusterautoscaling) | <pre>object({<br> enabled = bool<br> min_cpu_cores = number<br> max_cpu_cores = number<br> min_memory_gb = number<br> max_memory_gb = number<br> gpu_resources = list(object({ resource_type = string, minimum = number, maximum = number }))<br> auto_repair = bool<br> auto_upgrade = bool<br> })</pre> | <pre>{<br> "auto_repair": true,<br> "auto_upgrade": true,<br> "enabled": false,<br> "gpu_resources": [],<br> "max_cpu_cores": 0,<br> "max_memory_gb": 0,<br> "min_cpu_cores": 0,<br> "min_memory_gb": 0<br>}</pre> | no |
138+
| cluster\_autoscaling | Cluster autoscaling configuration. See [more details](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#clusterautoscaling) | <pre>object({<br> enabled = bool<br> min_cpu_cores = number<br> max_cpu_cores = number<br> min_memory_gb = number<br> max_memory_gb = number<br> gpu_resources = list(object({ resource_type = string, minimum = number, maximum = number }))<br> auto_repair = bool<br> auto_upgrade = bool<br> disk_size = optional(number)<br> disk_type = optional(string)<br> })</pre> | <pre>{<br> "auto_repair": true,<br> "auto_upgrade": true,<br> "disk_size": 100,<br> "disk_type": "pd-standard",<br> "enabled": false,<br> "gpu_resources": [],<br> "max_cpu_cores": 0,<br> "max_memory_gb": 0,<br> "min_cpu_cores": 0,<br> "min_memory_gb": 0<br>}</pre> | no |
135139
| cluster\_dns\_domain | The suffix used for all cluster service records. | `string` | `""` | no |
136140
| cluster\_dns\_provider | Which in-cluster DNS provider should be used. PROVIDER\_UNSPECIFIED (default) or PLATFORM\_DEFAULT or CLOUD\_DNS. | `string` | `"PROVIDER_UNSPECIFIED"` | no |
137141
| cluster\_dns\_scope | The scope of access to cluster DNS records. DNS\_SCOPE\_UNSPECIFIED (default) or CLUSTER\_SCOPE or VPC\_SCOPE. | `string` | `"DNS_SCOPE_UNSPECIFIED"` | no |
@@ -317,7 +321,7 @@ The [project factory](https://github.com/terraform-google-modules/terraform-goog
317321
#### Kubectl
318322
- [kubectl](https://github.com/kubernetes/kubernetes/releases) 1.9.x
319323
#### Terraform and Plugins
320-
- [Terraform](https://www.terraform.io/downloads.html) 0.13+
324+
- [Terraform](https://www.terraform.io/downloads.html) 1.3+
321325
- [Terraform Provider for GCP][terraform-provider-google] v4.51
322326
#### gcloud
323327
Some submodules use the [terraform-google-gcloud](https://github.com/terraform-google-modules/terraform-google-gcloud) module. By default, this module assumes you already have gcloud installed in your $PATH.
@@ -346,3 +350,4 @@ In order to operate with the Service Account you must activate the following API
346350
[terraform-provider-google]: https://github.com/terraform-providers/terraform-provider-google
347351
[12.3.0]: https://registry.terraform.io/modules/terraform-google-modules/kubernetes-engine/google/12.3.0
348352
[terraform-0.13-upgrade]: https://www.terraform.io/upgrade-guides/0-13.html
353+
[terraform-1.3-upgrade]: https://developer.hashicorp.com/terraform/language/v1.3.x/upgrade-guides

autogen/main/README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,14 @@ The implications of this are that:
4242
{% endif %}
4343
## Compatibility
4444

45-
This module is meant for use with Terraform 0.13+ and tested using Terraform 1.0+.
46-
If you find incompatibilities using Terraform `>=0.13`, please open an issue.
45+
This module is meant for use with Terraform 1.3+ and tested using Terraform 1.0+.
46+
If you find incompatibilities using Terraform `>=1.3`, please open an issue.
4747

48-
If you haven't [upgraded][terraform-0.13-upgrade] and need a Terraform
48+
If you haven't [upgraded to 1.3][terraform-1.3-upgrade] and need a Terraform
49+
0.13.x-compatible version of this module, the last released version
50+
intended for Terraform 0.13.x is [27.0.0].
51+
52+
If you haven't [upgraded to 0.13][terraform-0.13-upgrade] and need a Terraform
4953
0.12.x-compatible version of this module, the last released version
5054
intended for Terraform 0.12.x is [12.3.0].
5155

@@ -264,7 +268,7 @@ The [project factory](https://github.com/terraform-google-modules/terraform-goog
264268
#### Kubectl
265269
- [kubectl](https://github.com/kubernetes/kubernetes/releases) 1.9.x
266270
#### Terraform and Plugins
267-
- [Terraform](https://www.terraform.io/downloads.html) 0.13+
271+
- [Terraform](https://www.terraform.io/downloads.html) 1.3+
268272
{% if beta_cluster %}
269273
- [Terraform Provider for GCP Beta][terraform-provider-google-beta] v4.51
270274
{% else %}
@@ -301,3 +305,4 @@ In order to operate with the Service Account you must activate the following API
301305
{% endif %}
302306
[12.3.0]: https://registry.terraform.io/modules/terraform-google-modules/kubernetes-engine/google/12.3.0
303307
[terraform-0.13-upgrade]: https://www.terraform.io/upgrade-guides/0-13.html
308+
[terraform-1.3-upgrade]: https://developer.hashicorp.com/terraform/language/v1.3.x/upgrade-guides

autogen/main/cluster.tf.tmpl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ resource "google_container_cluster" "primary" {
141141
auto_upgrade = lookup(var.cluster_autoscaling, "auto_upgrade",true)
142142
}
143143

144+
disk_size = lookup(var.cluster_autoscaling, "disk_size", 100)
145+
disk_type = lookup(var.cluster_autoscaling, "disk_type", "pd-standard")
146+
144147
{% if beta_cluster %}
145148
min_cpu_platform = lookup(var.node_pools[0], "min_cpu_platform", "")
146149
{% endif %}

autogen/main/variables.tf.tmpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ variable "cluster_autoscaling" {
243243
gpu_resources = list(object({ resource_type = string, minimum = number, maximum = number }))
244244
auto_repair = bool
245245
auto_upgrade = bool
246+
disk_size = optional(number)
247+
disk_type = optional(string)
246248
})
247249
default = {
248250
enabled = false
@@ -256,6 +258,8 @@ variable "cluster_autoscaling" {
256258
gpu_resources = []
257259
auto_repair = true
258260
auto_upgrade = true
261+
disk_size = 100
262+
disk_type = "pd-standard"
259263
}
260264
description = "Cluster autoscaling configuration. See [more details](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#clusterautoscaling)"
261265
}

autogen/main/versions.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{% set module_registry_name = module_path_str.split('/')[-1] %}
1919

2020
terraform {
21-
required_version = ">=0.13"
21+
required_version = ">=1.3"
2222

2323
{% if beta_cluster %}
2424
required_providers {

autogen/safer-cluster/versions.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{% set module_registry_name = module_path_str.split('/')[-1] %}
2121

2222
terraform {
23-
required_version = ">=0.13"
23+
required_version = ">=1.3"
2424

2525
provider_meta "google-beta" {
2626
module_name = "blueprints/terraform/terraform-google-kubernetes-engine{% if module_registry_name %}:{{ module_registry_name }}{% endif %}/v27.0.0"

cluster.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ resource "google_container_cluster" "primary" {
110110
auto_upgrade = lookup(var.cluster_autoscaling, "auto_upgrade", true)
111111
}
112112

113+
disk_size = lookup(var.cluster_autoscaling, "disk_size", 100)
114+
disk_type = lookup(var.cluster_autoscaling, "disk_type", "pd-standard")
115+
113116
}
114117
}
115118
dynamic "resource_limits" {

modules/acm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ data "google_client_config" "default" {}
9191
| install\_template\_library | Whether to install the default Policy Controller template library | `bool` | `true` | no |
9292
| location | GCP location used to reach cluster. | `string` | n/a | yes |
9393
| metrics\_gcp\_sa\_name | The name of the Google service account for ACM metrics writing | `string` | `"acm-metrics-writer"` | no |
94-
| policy\_bundles | A list of Policy Controller policy bundles git urls (example: <https://github.com/GoogleCloudPlatform/acm-policy-controller-library.git/bundles/policy-essentials-v2022>) to install on the cluster. | `list(string)` | `[]` | no |
94+
| policy\_bundles | A list of Policy Controller policy bundles git urls (example: https://github.com/GoogleCloudPlatform/acm-policy-controller-library.git/bundles/policy-essentials-v2022) to install on the cluster. | `list(string)` | `[]` | no |
9595
| policy\_dir | Subfolder containing configs in ACM Git repo. If un-set, uses Config Management default. | `string` | `""` | no |
9696
| project\_id | GCP project\_id used to reach cluster. | `string` | n/a | yes |
9797
| secret\_type | git authentication secret type, is passed through to ConfigManagement spec.git.secretType. Overriden to value 'ssh' if `create_ssh_key` is true | `string` | `"ssh"` | no |

modules/beta-autopilot-private-cluster/README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ For details on configuring private clusters with this module, check the [trouble
1515

1616
## Compatibility
1717

18-
This module is meant for use with Terraform 0.13+ and tested using Terraform 1.0+.
19-
If you find incompatibilities using Terraform `>=0.13`, please open an issue.
18+
This module is meant for use with Terraform 1.3+ and tested using Terraform 1.0+.
19+
If you find incompatibilities using Terraform `>=1.3`, please open an issue.
2020

21-
If you haven't [upgraded][terraform-0.13-upgrade] and need a Terraform
21+
If you haven't [upgraded to 1.3][terraform-1.3-upgrade] and need a Terraform
22+
0.13.x-compatible version of this module, the last released version
23+
intended for Terraform 0.13.x is [27.0.0].
24+
25+
If you haven't [upgraded to 0.13][terraform-0.13-upgrade] and need a Terraform
2226
0.12.x-compatible version of this module, the last released version
2327
intended for Terraform 0.12.x is [12.3.0].
2428

@@ -185,7 +189,7 @@ The [project factory](https://github.com/terraform-google-modules/terraform-goog
185189
#### Kubectl
186190
- [kubectl](https://github.com/kubernetes/kubernetes/releases) 1.9.x
187191
#### Terraform and Plugins
188-
- [Terraform](https://www.terraform.io/downloads.html) 0.13+
192+
- [Terraform](https://www.terraform.io/downloads.html) 1.3+
189193
- [Terraform Provider for GCP Beta][terraform-provider-google-beta] v4.51
190194
#### gcloud
191195
Some submodules use the [terraform-google-gcloud](https://github.com/terraform-google-modules/terraform-google-gcloud) module. By default, this module assumes you already have gcloud installed in your $PATH.
@@ -214,3 +218,4 @@ In order to operate with the Service Account you must activate the following API
214218
[terraform-provider-google-beta]: https://github.com/terraform-providers/terraform-provider-google-beta
215219
[12.3.0]: https://registry.terraform.io/modules/terraform-google-modules/kubernetes-engine/google/12.3.0
216220
[terraform-0.13-upgrade]: https://www.terraform.io/upgrade-guides/0-13.html
221+
[terraform-1.3-upgrade]: https://developer.hashicorp.com/terraform/language/v1.3.x/upgrade-guides

modules/beta-autopilot-private-cluster/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
terraform {
19-
required_version = ">=0.13"
19+
required_version = ">=1.3"
2020

2121
required_providers {
2222
google = {

modules/beta-autopilot-public-cluster/README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ Sub modules are provided for creating private clusters, beta private clusters, a
1212

1313
## Compatibility
1414

15-
This module is meant for use with Terraform 0.13+ and tested using Terraform 1.0+.
16-
If you find incompatibilities using Terraform `>=0.13`, please open an issue.
15+
This module is meant for use with Terraform 1.3+ and tested using Terraform 1.0+.
16+
If you find incompatibilities using Terraform `>=1.3`, please open an issue.
1717

18-
If you haven't [upgraded][terraform-0.13-upgrade] and need a Terraform
18+
If you haven't [upgraded to 1.3][terraform-1.3-upgrade] and need a Terraform
19+
0.13.x-compatible version of this module, the last released version
20+
intended for Terraform 0.13.x is [27.0.0].
21+
22+
If you haven't [upgraded to 0.13][terraform-0.13-upgrade] and need a Terraform
1923
0.12.x-compatible version of this module, the last released version
2024
intended for Terraform 0.12.x is [12.3.0].
2125

@@ -172,7 +176,7 @@ The [project factory](https://github.com/terraform-google-modules/terraform-goog
172176
#### Kubectl
173177
- [kubectl](https://github.com/kubernetes/kubernetes/releases) 1.9.x
174178
#### Terraform and Plugins
175-
- [Terraform](https://www.terraform.io/downloads.html) 0.13+
179+
- [Terraform](https://www.terraform.io/downloads.html) 1.3+
176180
- [Terraform Provider for GCP Beta][terraform-provider-google-beta] v4.51
177181
#### gcloud
178182
Some submodules use the [terraform-google-gcloud](https://github.com/terraform-google-modules/terraform-google-gcloud) module. By default, this module assumes you already have gcloud installed in your $PATH.
@@ -201,3 +205,4 @@ In order to operate with the Service Account you must activate the following API
201205
[terraform-provider-google-beta]: https://github.com/terraform-providers/terraform-provider-google-beta
202206
[12.3.0]: https://registry.terraform.io/modules/terraform-google-modules/kubernetes-engine/google/12.3.0
203207
[terraform-0.13-upgrade]: https://www.terraform.io/upgrade-guides/0-13.html
208+
[terraform-1.3-upgrade]: https://developer.hashicorp.com/terraform/language/v1.3.x/upgrade-guides

modules/beta-autopilot-public-cluster/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
terraform {
19-
required_version = ">=0.13"
19+
required_version = ">=1.3"
2020

2121
required_providers {
2222
google = {

modules/beta-private-cluster-update-variant/README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,14 @@ The implications of this are that:
3737

3838
## Compatibility
3939

40-
This module is meant for use with Terraform 0.13+ and tested using Terraform 1.0+.
41-
If you find incompatibilities using Terraform `>=0.13`, please open an issue.
40+
This module is meant for use with Terraform 1.3+ and tested using Terraform 1.0+.
41+
If you find incompatibilities using Terraform `>=1.3`, please open an issue.
4242

43-
If you haven't [upgraded][terraform-0.13-upgrade] and need a Terraform
43+
If you haven't [upgraded to 1.3][terraform-1.3-upgrade] and need a Terraform
44+
0.13.x-compatible version of this module, the last released version
45+
intended for Terraform 0.13.x is [27.0.0].
46+
47+
If you haven't [upgraded to 0.13][terraform-0.13-upgrade] and need a Terraform
4448
0.12.x-compatible version of this module, the last released version
4549
intended for Terraform 0.12.x is [12.3.0].
4650

@@ -165,7 +169,7 @@ Then perform the following commands on the root folder:
165169
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format [email protected] | `string` | `null` | no |
166170
| cloudrun | (Beta) Enable CloudRun addon | `bool` | `false` | no |
167171
| cloudrun\_load\_balancer\_type | (Beta) Configure the Cloud Run load balancer type. External by default. Set to `LOAD_BALANCER_TYPE_INTERNAL` to configure as an internal load balancer. | `string` | `""` | no |
168-
| cluster\_autoscaling | Cluster autoscaling configuration. See [more details](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#clusterautoscaling) | <pre>object({<br> enabled = bool<br> autoscaling_profile = string<br> min_cpu_cores = number<br> max_cpu_cores = number<br> min_memory_gb = number<br> max_memory_gb = number<br> gpu_resources = list(object({ resource_type = string, minimum = number, maximum = number }))<br> auto_repair = bool<br> auto_upgrade = bool<br> })</pre> | <pre>{<br> "auto_repair": true,<br> "auto_upgrade": true,<br> "autoscaling_profile": "BALANCED",<br> "enabled": false,<br> "gpu_resources": [],<br> "max_cpu_cores": 0,<br> "max_memory_gb": 0,<br> "min_cpu_cores": 0,<br> "min_memory_gb": 0<br>}</pre> | no |
172+
| cluster\_autoscaling | Cluster autoscaling configuration. See [more details](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#clusterautoscaling) | <pre>object({<br> enabled = bool<br> autoscaling_profile = string<br> min_cpu_cores = number<br> max_cpu_cores = number<br> min_memory_gb = number<br> max_memory_gb = number<br> gpu_resources = list(object({ resource_type = string, minimum = number, maximum = number }))<br> auto_repair = bool<br> auto_upgrade = bool<br> disk_size = optional(number)<br> disk_type = optional(string)<br> })</pre> | <pre>{<br> "auto_repair": true,<br> "auto_upgrade": true,<br> "autoscaling_profile": "BALANCED",<br> "disk_size": 100,<br> "disk_type": "pd-standard",<br> "enabled": false,<br> "gpu_resources": [],<br> "max_cpu_cores": 0,<br> "max_memory_gb": 0,<br> "min_cpu_cores": 0,<br> "min_memory_gb": 0<br>}</pre> | no |
169173
| cluster\_dns\_domain | The suffix used for all cluster service records. | `string` | `""` | no |
170174
| cluster\_dns\_provider | Which in-cluster DNS provider should be used. PROVIDER\_UNSPECIFIED (default) or PLATFORM\_DEFAULT or CLOUD\_DNS. | `string` | `"PROVIDER_UNSPECIFIED"` | no |
171175
| cluster\_dns\_scope | The scope of access to cluster DNS records. DNS\_SCOPE\_UNSPECIFIED (default) or CLUSTER\_SCOPE or VPC\_SCOPE. | `string` | `"DNS_SCOPE_UNSPECIFIED"` | no |
@@ -387,7 +391,7 @@ The [project factory](https://github.com/terraform-google-modules/terraform-goog
387391
#### Kubectl
388392
- [kubectl](https://github.com/kubernetes/kubernetes/releases) 1.9.x
389393
#### Terraform and Plugins
390-
- [Terraform](https://www.terraform.io/downloads.html) 0.13+
394+
- [Terraform](https://www.terraform.io/downloads.html) 1.3+
391395
- [Terraform Provider for GCP Beta][terraform-provider-google-beta] v4.51
392396
#### gcloud
393397
Some submodules use the [terraform-google-gcloud](https://github.com/terraform-google-modules/terraform-google-gcloud) module. By default, this module assumes you already have gcloud installed in your $PATH.
@@ -416,3 +420,4 @@ In order to operate with the Service Account you must activate the following API
416420
[terraform-provider-google-beta]: https://github.com/terraform-providers/terraform-provider-google-beta
417421
[12.3.0]: https://registry.terraform.io/modules/terraform-google-modules/kubernetes-engine/google/12.3.0
418422
[terraform-0.13-upgrade]: https://www.terraform.io/upgrade-guides/0-13.html
423+
[terraform-1.3-upgrade]: https://developer.hashicorp.com/terraform/language/v1.3.x/upgrade-guides

modules/beta-private-cluster-update-variant/cluster.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ resource "google_container_cluster" "primary" {
122122
auto_upgrade = lookup(var.cluster_autoscaling, "auto_upgrade", true)
123123
}
124124

125+
disk_size = lookup(var.cluster_autoscaling, "disk_size", 100)
126+
disk_type = lookup(var.cluster_autoscaling, "disk_type", "pd-standard")
127+
125128
min_cpu_platform = lookup(var.node_pools[0], "min_cpu_platform", "")
126129
}
127130
}

modules/beta-private-cluster-update-variant/variables.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,8 @@ variable "cluster_autoscaling" {
236236
gpu_resources = list(object({ resource_type = string, minimum = number, maximum = number }))
237237
auto_repair = bool
238238
auto_upgrade = bool
239+
disk_size = optional(number)
240+
disk_type = optional(string)
239241
})
240242
default = {
241243
enabled = false
@@ -247,6 +249,8 @@ variable "cluster_autoscaling" {
247249
gpu_resources = []
248250
auto_repair = true
249251
auto_upgrade = true
252+
disk_size = 100
253+
disk_type = "pd-standard"
250254
}
251255
description = "Cluster autoscaling configuration. See [more details](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#clusterautoscaling)"
252256
}

0 commit comments

Comments
 (0)