Skip to content

Commit 3de63b3

Browse files
DrFaust92apeabody
andauthored
fix(docs): remove beta from docs from non beta arguments (#1957)
Co-authored-by: Andrew Peabody <[email protected]>
1 parent 348b3f3 commit 3de63b3

File tree

11 files changed

+44
-44
lines changed

11 files changed

+44
-44
lines changed

autogen/main/variables.tf.tmpl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -431,25 +431,25 @@ variable "cluster_resource_labels" {
431431

432432
variable "deploy_using_private_endpoint" {
433433
type = bool
434-
description = "(Beta) A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
434+
description = "A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
435435
default = false
436436
}
437437

438438
variable "enable_private_endpoint" {
439439
type = bool
440-
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
440+
description = "Whether the master's internal IP address is used as the cluster endpoint"
441441
default = false
442442
}
443443

444444
variable "enable_private_nodes" {
445445
type = bool
446-
description = "(Beta) Whether nodes have internal IP addresses only"
446+
description = "Whether nodes have internal IP addresses only"
447447
default = false
448448
}
449449

450450
variable "master_ipv4_cidr_block" {
451451
type = string
452-
description = "(Beta) The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters."
452+
description = "The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters."
453453
{% if autopilot_cluster == true%}
454454
default = null
455455
{% else %}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,16 @@ Then perform the following commands on the root folder:
8484
| create\_service\_account | Defines if service account specified to run nodes should be created. | `bool` | `true` | no |
8585
| database\_encryption | Application-layer Secrets Encryption settings. The object format is {state = string, key\_name = string}. Valid values of state are: "ENCRYPTED"; "DECRYPTED". key\_name is the name of a CloudKMS key. | `list(object({ state = string, key_name = string }))` | <pre>[<br> {<br> "key_name": "",<br> "state": "DECRYPTED"<br> }<br>]</pre> | no |
8686
| deletion\_protection | Whether or not to allow Terraform to destroy the cluster. | `bool` | `true` | no |
87-
| deploy\_using\_private\_endpoint | (Beta) A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment. | `bool` | `false` | no |
87+
| deploy\_using\_private\_endpoint | A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment. | `bool` | `false` | no |
8888
| description | The description of the cluster | `string` | `""` | no |
8989
| disable\_default\_snat | Whether to disable the default SNAT to support the private use of public IP addresses | `bool` | `false` | no |
9090
| dns\_cache | The status of the NodeLocal DNSCache addon. | `bool` | `true` | no |
9191
| enable\_confidential\_nodes | An optional flag to enable confidential node config. | `bool` | `false` | no |
9292
| enable\_cost\_allocation | Enables Cost Allocation Feature and the cluster name and namespace of your GKE workloads appear in the labels field of the billing export to BigQuery | `bool` | `false` | no |
9393
| enable\_fqdn\_network\_policy | Enable FQDN Network Policies on the cluster | `bool` | `null` | no |
9494
| enable\_network\_egress\_export | Whether to enable network egress metering for this cluster. If enabled, a daemonset will be created in the cluster to meter network egress traffic. | `bool` | `false` | no |
95-
| enable\_private\_endpoint | (Beta) Whether the master's internal IP address is used as the cluster endpoint | `bool` | `false` | no |
96-
| enable\_private\_nodes | (Beta) Whether nodes have internal IP addresses only | `bool` | `false` | no |
95+
| enable\_private\_endpoint | Whether the master's internal IP address is used as the cluster endpoint | `bool` | `false` | no |
96+
| enable\_private\_nodes | Whether nodes have internal IP addresses only | `bool` | `false` | no |
9797
| enable\_resource\_consumption\_export | Whether to enable resource consumption metering on this cluster. When enabled, a table will be created in the resource export BigQuery dataset to store resource consumption data. The resulting table can be joined with the resource usage table or with BigQuery billing export. | `bool` | `true` | no |
9898
| enable\_tpu | Enable Cloud TPU resources in the cluster. WARNING: changing this after cluster creation is destructive! | `bool` | `false` | no |
9999
| enable\_vertical\_pod\_autoscaling | Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it | `bool` | `true` | no |
@@ -118,7 +118,7 @@ Then perform the following commands on the root folder:
118118
| maintenance\_start\_time | Time window specified for daily or recurring maintenance operations in RFC3339 format | `string` | `"05:00"` | no |
119119
| master\_authorized\_networks | List of master authorized networks. If none are provided, disallow external access (except the cluster node IPs, which GKE automatically whitelists). | `list(object({ cidr_block = string, display_name = string }))` | `[]` | no |
120120
| master\_global\_access\_enabled | Whether the cluster master is accessible globally (from any region) or only within the same region as the private endpoint. | `bool` | `true` | no |
121-
| master\_ipv4\_cidr\_block | (Beta) The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters. | `string` | `null` | no |
121+
| master\_ipv4\_cidr\_block | The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters. | `string` | `null` | no |
122122
| name | The name of the cluster (required) | `string` | n/a | yes |
123123
| network | The VPC network to host the cluster in (required) | `string` | n/a | yes |
124124
| network\_project\_id | The project ID of the shared VPC's host (for shared vpc support) | `string` | `""` | no |

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -266,25 +266,25 @@ variable "cluster_resource_labels" {
266266

267267
variable "deploy_using_private_endpoint" {
268268
type = bool
269-
description = "(Beta) A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
269+
description = "A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
270270
default = false
271271
}
272272

273273
variable "enable_private_endpoint" {
274274
type = bool
275-
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
275+
description = "Whether the master's internal IP address is used as the cluster endpoint"
276276
default = false
277277
}
278278

279279
variable "enable_private_nodes" {
280280
type = bool
281-
description = "(Beta) Whether nodes have internal IP addresses only"
281+
description = "Whether nodes have internal IP addresses only"
282282
default = false
283283
}
284284

285285
variable "master_ipv4_cidr_block" {
286286
type = string
287-
description = "(Beta) The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters."
287+
description = "The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters."
288288
default = null
289289
}
290290

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Then perform the following commands on the root folder:
190190
| datapath\_provider | The desired datapath provider for this cluster. By default, `DATAPATH_PROVIDER_UNSPECIFIED` enables the IPTables-based kube-proxy implementation. `ADVANCED_DATAPATH` enables Dataplane-V2 feature. | `string` | `"DATAPATH_PROVIDER_UNSPECIFIED"` | no |
191191
| default\_max\_pods\_per\_node | The maximum number of pods to schedule per node | `number` | `110` | no |
192192
| deletion\_protection | Whether or not to allow Terraform to destroy the cluster. | `bool` | `true` | no |
193-
| deploy\_using\_private\_endpoint | (Beta) A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment. | `bool` | `false` | no |
193+
| deploy\_using\_private\_endpoint | A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment. | `bool` | `false` | no |
194194
| description | The description of the cluster | `string` | `""` | no |
195195
| disable\_default\_snat | Whether to disable the default SNAT to support the private use of public IP addresses | `bool` | `false` | no |
196196
| disable\_legacy\_metadata\_endpoints | Disable the /0.1/ and /v1beta1/ metadata server endpoints on the node. Changing this value will cause all node pools to be recreated. | `bool` | `true` | no |
@@ -207,8 +207,8 @@ Then perform the following commands on the root folder:
207207
| enable\_mesh\_certificates | Controls the issuance of workload mTLS certificates. When enabled the GKE Workload Identity Certificates controller and node agent will be deployed in the cluster. Requires Workload Identity. | `bool` | `false` | no |
208208
| enable\_network\_egress\_export | Whether to enable network egress metering for this cluster. If enabled, a daemonset will be created in the cluster to meter network egress traffic. | `bool` | `false` | no |
209209
| enable\_pod\_security\_policy | enabled - Enable the PodSecurityPolicy controller for this cluster. If enabled, pods must be valid under a PodSecurityPolicy to be created. Pod Security Policy was removed from GKE clusters with version >= 1.25.0. | `bool` | `false` | no |
210-
| enable\_private\_endpoint | (Beta) Whether the master's internal IP address is used as the cluster endpoint | `bool` | `false` | no |
211-
| enable\_private\_nodes | (Beta) Whether nodes have internal IP addresses only | `bool` | `false` | no |
210+
| enable\_private\_endpoint | Whether the master's internal IP address is used as the cluster endpoint | `bool` | `false` | no |
211+
| enable\_private\_nodes | Whether nodes have internal IP addresses only | `bool` | `false` | no |
212212
| enable\_resource\_consumption\_export | Whether to enable resource consumption metering on this cluster. When enabled, a table will be created in the resource export BigQuery dataset to store resource consumption data. The resulting table can be joined with the resource usage table or with BigQuery billing export. | `bool` | `true` | no |
213213
| enable\_shielded\_nodes | Enable Shielded Nodes features on all nodes in this cluster | `bool` | `true` | no |
214214
| enable\_tpu | Enable Cloud TPU resources in the cluster. WARNING: changing this after cluster creation is destructive! | `bool` | `false` | no |
@@ -244,7 +244,7 @@ Then perform the following commands on the root folder:
244244
| maintenance\_start\_time | Time window specified for daily or recurring maintenance operations in RFC3339 format | `string` | `"05:00"` | no |
245245
| master\_authorized\_networks | List of master authorized networks. If none are provided, disallow external access (except the cluster node IPs, which GKE automatically whitelists). | `list(object({ cidr_block = string, display_name = string }))` | `[]` | no |
246246
| master\_global\_access\_enabled | Whether the cluster master is accessible globally (from any region) or only within the same region as the private endpoint. | `bool` | `true` | no |
247-
| master\_ipv4\_cidr\_block | (Beta) The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters. | `string` | `"10.0.0.0/28"` | no |
247+
| master\_ipv4\_cidr\_block | The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters. | `string` | `"10.0.0.0/28"` | no |
248248
| monitoring\_enable\_managed\_prometheus | Configuration for Managed Service for Prometheus. Whether or not the managed collection is enabled. | `bool` | `false` | no |
249249
| monitoring\_enable\_observability\_metrics | Whether or not the advanced datapath metrics are enabled. | `bool` | `false` | no |
250250
| monitoring\_enabled\_components | List of services to monitor: SYSTEM\_COMPONENTS, WORKLOADS. Empty list is default GKE configuration. | `list(string)` | `[]` | no |

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -420,25 +420,25 @@ variable "cluster_resource_labels" {
420420

421421
variable "deploy_using_private_endpoint" {
422422
type = bool
423-
description = "(Beta) A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
423+
description = "A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
424424
default = false
425425
}
426426

427427
variable "enable_private_endpoint" {
428428
type = bool
429-
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
429+
description = "Whether the master's internal IP address is used as the cluster endpoint"
430430
default = false
431431
}
432432

433433
variable "enable_private_nodes" {
434434
type = bool
435-
description = "(Beta) Whether nodes have internal IP addresses only"
435+
description = "Whether nodes have internal IP addresses only"
436436
default = false
437437
}
438438

439439
variable "master_ipv4_cidr_block" {
440440
type = string
441-
description = "(Beta) The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters."
441+
description = "The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters."
442442
default = "10.0.0.0/28"
443443
}
444444

modules/beta-private-cluster/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Then perform the following commands on the root folder:
168168
| datapath\_provider | The desired datapath provider for this cluster. By default, `DATAPATH_PROVIDER_UNSPECIFIED` enables the IPTables-based kube-proxy implementation. `ADVANCED_DATAPATH` enables Dataplane-V2 feature. | `string` | `"DATAPATH_PROVIDER_UNSPECIFIED"` | no |
169169
| default\_max\_pods\_per\_node | The maximum number of pods to schedule per node | `number` | `110` | no |
170170
| deletion\_protection | Whether or not to allow Terraform to destroy the cluster. | `bool` | `true` | no |
171-
| deploy\_using\_private\_endpoint | (Beta) A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment. | `bool` | `false` | no |
171+
| deploy\_using\_private\_endpoint | A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment. | `bool` | `false` | no |
172172
| description | The description of the cluster | `string` | `""` | no |
173173
| disable\_default\_snat | Whether to disable the default SNAT to support the private use of public IP addresses | `bool` | `false` | no |
174174
| disable\_legacy\_metadata\_endpoints | Disable the /0.1/ and /v1beta1/ metadata server endpoints on the node. Changing this value will cause all node pools to be recreated. | `bool` | `true` | no |
@@ -185,8 +185,8 @@ Then perform the following commands on the root folder:
185185
| enable\_mesh\_certificates | Controls the issuance of workload mTLS certificates. When enabled the GKE Workload Identity Certificates controller and node agent will be deployed in the cluster. Requires Workload Identity. | `bool` | `false` | no |
186186
| enable\_network\_egress\_export | Whether to enable network egress metering for this cluster. If enabled, a daemonset will be created in the cluster to meter network egress traffic. | `bool` | `false` | no |
187187
| enable\_pod\_security\_policy | enabled - Enable the PodSecurityPolicy controller for this cluster. If enabled, pods must be valid under a PodSecurityPolicy to be created. Pod Security Policy was removed from GKE clusters with version >= 1.25.0. | `bool` | `false` | no |
188-
| enable\_private\_endpoint | (Beta) Whether the master's internal IP address is used as the cluster endpoint | `bool` | `false` | no |
189-
| enable\_private\_nodes | (Beta) Whether nodes have internal IP addresses only | `bool` | `false` | no |
188+
| enable\_private\_endpoint | Whether the master's internal IP address is used as the cluster endpoint | `bool` | `false` | no |
189+
| enable\_private\_nodes | Whether nodes have internal IP addresses only | `bool` | `false` | no |
190190
| enable\_resource\_consumption\_export | Whether to enable resource consumption metering on this cluster. When enabled, a table will be created in the resource export BigQuery dataset to store resource consumption data. The resulting table can be joined with the resource usage table or with BigQuery billing export. | `bool` | `true` | no |
191191
| enable\_shielded\_nodes | Enable Shielded Nodes features on all nodes in this cluster | `bool` | `true` | no |
192192
| enable\_tpu | Enable Cloud TPU resources in the cluster. WARNING: changing this after cluster creation is destructive! | `bool` | `false` | no |
@@ -222,7 +222,7 @@ Then perform the following commands on the root folder:
222222
| maintenance\_start\_time | Time window specified for daily or recurring maintenance operations in RFC3339 format | `string` | `"05:00"` | no |
223223
| master\_authorized\_networks | List of master authorized networks. If none are provided, disallow external access (except the cluster node IPs, which GKE automatically whitelists). | `list(object({ cidr_block = string, display_name = string }))` | `[]` | no |
224224
| master\_global\_access\_enabled | Whether the cluster master is accessible globally (from any region) or only within the same region as the private endpoint. | `bool` | `true` | no |
225-
| master\_ipv4\_cidr\_block | (Beta) The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters. | `string` | `"10.0.0.0/28"` | no |
225+
| master\_ipv4\_cidr\_block | The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters. | `string` | `"10.0.0.0/28"` | no |
226226
| monitoring\_enable\_managed\_prometheus | Configuration for Managed Service for Prometheus. Whether or not the managed collection is enabled. | `bool` | `false` | no |
227227
| monitoring\_enable\_observability\_metrics | Whether or not the advanced datapath metrics are enabled. | `bool` | `false` | no |
228228
| monitoring\_enabled\_components | List of services to monitor: SYSTEM\_COMPONENTS, WORKLOADS. Empty list is default GKE configuration. | `list(string)` | `[]` | no |

modules/beta-private-cluster/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -420,25 +420,25 @@ variable "cluster_resource_labels" {
420420

421421
variable "deploy_using_private_endpoint" {
422422
type = bool
423-
description = "(Beta) A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
423+
description = "A toggle for Terraform and kubectl to connect to the master's internal IP address during deployment."
424424
default = false
425425
}
426426

427427
variable "enable_private_endpoint" {
428428
type = bool
429-
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
429+
description = "Whether the master's internal IP address is used as the cluster endpoint"
430430
default = false
431431
}
432432

433433
variable "enable_private_nodes" {
434434
type = bool
435-
description = "(Beta) Whether nodes have internal IP addresses only"
435+
description = "Whether nodes have internal IP addresses only"
436436
default = false
437437
}
438438

439439
variable "master_ipv4_cidr_block" {
440440
type = string
441-
description = "(Beta) The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters."
441+
description = "The IP range in CIDR notation to use for the hosted master network. Optional for Autopilot clusters."
442442
default = "10.0.0.0/28"
443443
}
444444

0 commit comments

Comments
 (0)