Skip to content

Commit ba22224

Browse files
committed
check
Signed-off-by: drfaust92 <[email protected]>
1 parent df23997 commit ba22224

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

autogen/main/cluster.tf.tmpl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -915,6 +915,7 @@ locals {
915915
"flex_start",
916916
"local_ssd_ephemeral_storage_count",
917917
"ephemeral_storage_local_ssd_data_cache_count",
918+
"pod_cidr_overprovision_config",
918919
]
919920
}
920921

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,7 @@ locals {
792792
"flex_start",
793793
"local_ssd_ephemeral_storage_count",
794794
"ephemeral_storage_local_ssd_data_cache_count",
795+
"pod_cidr_overprovision_config",
795796
]
796797
}
797798

modules/beta-private-cluster/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,9 @@ Then perform the following commands on the root folder:
146146

147147
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
148148
<<<<<<< HEAD
149+
<<<<<<< HEAD
150+
=======
151+
>>>>>>> ead51c5c986 (check)
149152
## Inputs
150153

151154
| Name | Description | Type | Default | Required |
@@ -257,7 +260,11 @@ Then perform the following commands on the root folder:
257260
| network\_policy | Enable network policy addon | `bool` | `false` | no |
258261
| network\_policy\_provider | The network policy provider. | `string` | `"CALICO"` | no |
259262
| network\_project\_id | The project ID of the shared VPC's host (for shared vpc support) | `string` | `""` | no |
263+
<<<<<<< HEAD
260264
| network\_tags | (Optional) - List of network tags applied to autopilot and auto-provisioned node pools. | `list(string)` | `[]` | no |
265+
=======
266+
| network\_tags | (Optional) - List of network tags applied to auto-provisioned node pools. | `list(string)` | `[]` | no |
267+
>>>>>>> ead51c5c986 (check)
261268
| node\_metadata | Specifies how node metadata is exposed to the workload running on the node | `string` | `"GKE_METADATA"` | no |
262269
| node\_pools | List of maps containing node pools | `list(map(any))` | <pre>[<br> {<br> "name": "default-node-pool"<br> }<br>]</pre> | no |
263270
| node\_pools\_cgroup\_mode | Map of strings containing cgroup node config by node-pool name | `map(string)` | <pre>{<br> "all": "",<br> "default-node-pool": ""<br>}</pre> | no |
@@ -275,7 +282,11 @@ Then perform the following commands on the root folder:
275282
| notification\_config\_topic | The desired Pub/Sub topic to which notifications will be sent by GKE. Format is projects/{project}/topics/{topic}. | `string` | `""` | no |
276283
| notification\_filter\_event\_type | Choose what type of notifications you want to receive. If no filters are applied, you'll receive all notification types. Can be used to filter what notifications are sent. Accepted values are UPGRADE\_AVAILABLE\_EVENT, UPGRADE\_EVENT, and SECURITY\_BULLETIN\_EVENT. | `list(string)` | `[]` | no |
277284
| parallelstore\_csi\_driver | Whether the Parallelstore CSI driver Addon is enabled for this cluster. | `bool` | `null` | no |
285+
<<<<<<< HEAD
278286
| pod\_cidr\_overprovision\_config | Configuration for cluster level pod cidr overprovision. | `object({ disabled = bool })` | <pre>{<br> "disabled": null<br>}</pre> | no |
287+
=======
288+
| pod\_cidr\_overprovision\_config | Configuration for cluster level pod cidr overprovision. | `object({ disabled = bool })` | <pre>{<br> "disabled": false<br>}</pre> | no |
289+
>>>>>>> ead51c5c986 (check)
279290
| private\_endpoint\_subnetwork | The subnetwork to use for the hosted master network. | `string` | `null` | no |
280291
| project\_id | The project ID to host the cluster in (required) | `string` | n/a | yes |
281292
| ray\_operator\_config | The Ray Operator Addon configuration for this cluster. | <pre>object({<br> enabled = bool<br> logging_enabled = optional(bool, false)<br> monitoring_enabled = optional(bool, false)<br> })</pre> | <pre>{<br> "enabled": false,<br> "logging_enabled": false,<br> "monitoring_enabled": false<br>}</pre> | no |
@@ -285,7 +296,10 @@ Then perform the following commands on the root folder:
285296
| registry\_project\_ids | Projects holding Google Container Registries. If empty, we use the cluster project. If a service account is created and the `grant_registry_access` variable is set to `true`, the `storage.objectViewer` and `artifactregsitry.reader` roles are assigned on these projects. | `list(string)` | `[]` | no |
286297
| release\_channel | The release channel of this cluster. Accepted values are `UNSPECIFIED`, `RAPID`, `REGULAR` and `STABLE`. Defaults to `REGULAR`. | `string` | `"REGULAR"` | no |
287298
| remove\_default\_node\_pool | Remove default node pool while setting up the cluster | `bool` | `false` | no |
299+
<<<<<<< HEAD
288300
| resource\_manager\_tags | (Optional) - List of resource manager tags applied to autopilot and auto-provisioned node pools. A maximum of 5 tags can be specified. Tags must be in one of these formats: "tagKeys/{tag\_key\_id}"="tagValues/{tag\_value\_id}", "{org\_id}/{tag\_key\_name}"="{tag\_value\_name}", "{project\_id}/{tag\_key\_name}"="{tag\_value\_name}". | `map(string)` | `{}` | no |
301+
=======
302+
>>>>>>> ead51c5c986 (check)
289303
| resource\_usage\_export\_dataset\_id | The ID of a BigQuery Dataset for using BigQuery as the destination of resource usage export. | `string` | `""` | no |
290304
| sandbox\_enabled | (Beta) Enable GKE Sandbox (Do not forget to set `image_type` = `COS_CONTAINERD` to use it). | `bool` | `false` | no |
291305
| security\_posture\_mode | Security posture mode. Accepted values are `DISABLED` and `BASIC`. Defaults to `DISABLED`. | `string` | `"DISABLED"` | no |
@@ -349,8 +363,11 @@ Then perform the following commands on the root folder:
349363
| vertical\_pod\_autoscaling\_enabled | Whether vertical pod autoscaling enabled |
350364
| zones | List of zones in which the cluster resides |
351365

366+
<<<<<<< HEAD
352367
=======
353368
>>>>>>> 631605dbecd (check)
369+
=======
370+
>>>>>>> ead51c5c986 (check)
354371
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
355372
356373
## node_pools variable

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,7 @@ locals {
770770
"flex_start",
771771
"local_ssd_ephemeral_storage_count",
772772
"ephemeral_storage_local_ssd_data_cache_count",
773+
"pod_cidr_overprovision_config",
773774
]
774775
}
775776

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,7 @@ locals {
746746
"flex_start",
747747
"local_ssd_ephemeral_storage_count",
748748
"ephemeral_storage_local_ssd_data_cache_count",
749+
"pod_cidr_overprovision_config",
749750
]
750751
}
751752

0 commit comments

Comments
 (0)