pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +62 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/__init__.py +1 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/get_tables.py +143 -0
- pulumi_gcp/bigquery/outputs.py +66 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2300 -257
- pulumi_gcp/compute/get_instance.py +4 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +1491 -6
- pulumi_gcp/compute/region_target_http_proxy.py +159 -0
- pulumi_gcp/compute/region_target_https_proxy.py +175 -0
- pulumi_gcp/compute/service_attachment.py +75 -0
- pulumi_gcp/compute/target_http_proxy.py +49 -28
- pulumi_gcp/compute/target_https_proxy.py +77 -28
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/_inputs.py +236 -3
- pulumi_gcp/container/attached_cluster.py +61 -8
- pulumi_gcp/container/outputs.py +276 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/metastore_federation.py +8 -8
- pulumi_gcp/dataproc/metastore_service.py +2 -0
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +201 -7
- pulumi_gcp/developerconnect/__init__.py +11 -0
- pulumi_gcp/developerconnect/_inputs.py +301 -0
- pulumi_gcp/developerconnect/connection.py +1034 -0
- pulumi_gcp/developerconnect/git_repository_link.py +873 -0
- pulumi_gcp/developerconnect/outputs.py +247 -0
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/gkeonprem/_inputs.py +3 -3
- pulumi_gcp/gkeonprem/outputs.py +2 -2
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/memorystore/__init__.py +10 -0
- pulumi_gcp/memorystore/_inputs.py +731 -0
- pulumi_gcp/memorystore/instance.py +1663 -0
- pulumi_gcp/memorystore/outputs.py +598 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +108 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/folder.py +52 -33
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- pulumi_gcp/vpcaccess/connector.py +21 -28
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/RECORD +128 -111
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.2.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/_inputs.py
CHANGED
@@ -37,6 +37,8 @@ __all__ = [
|
|
37
37
|
'AttachedClusterProxyConfigArgsDict',
|
38
38
|
'AttachedClusterProxyConfigKubernetesSecretArgs',
|
39
39
|
'AttachedClusterProxyConfigKubernetesSecretArgsDict',
|
40
|
+
'AttachedClusterSecurityPostureConfigArgs',
|
41
|
+
'AttachedClusterSecurityPostureConfigArgsDict',
|
40
42
|
'AttachedClusterWorkloadIdentityConfigArgs',
|
41
43
|
'AttachedClusterWorkloadIdentityConfigArgsDict',
|
42
44
|
'AwsClusterAuthorizationArgs',
|
@@ -323,6 +325,8 @@ __all__ = [
|
|
323
325
|
'ClusterNodePoolAutoConfigArgsDict',
|
324
326
|
'ClusterNodePoolAutoConfigNetworkTagsArgs',
|
325
327
|
'ClusterNodePoolAutoConfigNetworkTagsArgsDict',
|
328
|
+
'ClusterNodePoolAutoConfigNodeKubeletConfigArgs',
|
329
|
+
'ClusterNodePoolAutoConfigNodeKubeletConfigArgsDict',
|
326
330
|
'ClusterNodePoolAutoscalingArgs',
|
327
331
|
'ClusterNodePoolAutoscalingArgsDict',
|
328
332
|
'ClusterNodePoolDefaultsArgs',
|
@@ -1016,6 +1020,40 @@ class AttachedClusterProxyConfigKubernetesSecretArgs:
|
|
1016
1020
|
pulumi.set(self, "namespace", value)
|
1017
1021
|
|
1018
1022
|
|
1023
|
+
if not MYPY:
|
1024
|
+
class AttachedClusterSecurityPostureConfigArgsDict(TypedDict):
|
1025
|
+
vulnerability_mode: pulumi.Input[str]
|
1026
|
+
"""
|
1027
|
+
Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
|
1028
|
+
Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
|
1029
|
+
"""
|
1030
|
+
elif False:
|
1031
|
+
AttachedClusterSecurityPostureConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1032
|
+
|
1033
|
+
@pulumi.input_type
|
1034
|
+
class AttachedClusterSecurityPostureConfigArgs:
|
1035
|
+
def __init__(__self__, *,
|
1036
|
+
vulnerability_mode: pulumi.Input[str]):
|
1037
|
+
"""
|
1038
|
+
:param pulumi.Input[str] vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
|
1039
|
+
Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
|
1040
|
+
"""
|
1041
|
+
pulumi.set(__self__, "vulnerability_mode", vulnerability_mode)
|
1042
|
+
|
1043
|
+
@property
|
1044
|
+
@pulumi.getter(name="vulnerabilityMode")
|
1045
|
+
def vulnerability_mode(self) -> pulumi.Input[str]:
|
1046
|
+
"""
|
1047
|
+
Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
|
1048
|
+
Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
|
1049
|
+
"""
|
1050
|
+
return pulumi.get(self, "vulnerability_mode")
|
1051
|
+
|
1052
|
+
@vulnerability_mode.setter
|
1053
|
+
def vulnerability_mode(self, value: pulumi.Input[str]):
|
1054
|
+
pulumi.set(self, "vulnerability_mode", value)
|
1055
|
+
|
1056
|
+
|
1019
1057
|
if not MYPY:
|
1020
1058
|
class AttachedClusterWorkloadIdentityConfigArgsDict(TypedDict):
|
1021
1059
|
identity_provider: NotRequired[pulumi.Input[str]]
|
@@ -8201,6 +8239,10 @@ if not MYPY:
|
|
8201
8239
|
See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
|
8202
8240
|
for more information. Defaults to false.
|
8203
8241
|
"""
|
8242
|
+
storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8243
|
+
"""
|
8244
|
+
The list of Storage Pools where boot disks are provisioned.
|
8245
|
+
"""
|
8204
8246
|
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8205
8247
|
"""
|
8206
8248
|
The list of instance tags applied to all nodes. Tags are used to identify
|
@@ -8265,6 +8307,7 @@ class ClusterNodeConfigArgs:
|
|
8265
8307
|
shielded_instance_config: Optional[pulumi.Input['ClusterNodeConfigShieldedInstanceConfigArgs']] = None,
|
8266
8308
|
sole_tenant_config: Optional[pulumi.Input['ClusterNodeConfigSoleTenantConfigArgs']] = None,
|
8267
8309
|
spot: Optional[pulumi.Input[bool]] = None,
|
8310
|
+
storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
8268
8311
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
8269
8312
|
taints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigTaintArgs']]]] = None,
|
8270
8313
|
workload_metadata_config: Optional[pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgs']] = None):
|
@@ -8355,6 +8398,7 @@ class ClusterNodeConfigArgs:
|
|
8355
8398
|
:param pulumi.Input[bool] spot: A boolean that represents whether the underlying node VMs are spot.
|
8356
8399
|
See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
|
8357
8400
|
for more information. Defaults to false.
|
8401
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
|
8358
8402
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes. Tags are used to identify
|
8359
8403
|
valid sources or targets for network firewalls.
|
8360
8404
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigTaintArgs']]] taints: A list of [Kubernetes taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
|
@@ -8442,6 +8486,8 @@ class ClusterNodeConfigArgs:
|
|
8442
8486
|
pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
|
8443
8487
|
if spot is not None:
|
8444
8488
|
pulumi.set(__self__, "spot", spot)
|
8489
|
+
if storage_pools is not None:
|
8490
|
+
pulumi.set(__self__, "storage_pools", storage_pools)
|
8445
8491
|
if tags is not None:
|
8446
8492
|
pulumi.set(__self__, "tags", tags)
|
8447
8493
|
if taints is not None:
|
@@ -8942,6 +8988,18 @@ class ClusterNodeConfigArgs:
|
|
8942
8988
|
def spot(self, value: Optional[pulumi.Input[bool]]):
|
8943
8989
|
pulumi.set(self, "spot", value)
|
8944
8990
|
|
8991
|
+
@property
|
8992
|
+
@pulumi.getter(name="storagePools")
|
8993
|
+
def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
8994
|
+
"""
|
8995
|
+
The list of Storage Pools where boot disks are provisioned.
|
8996
|
+
"""
|
8997
|
+
return pulumi.get(self, "storage_pools")
|
8998
|
+
|
8999
|
+
@storage_pools.setter
|
9000
|
+
def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
9001
|
+
pulumi.set(self, "storage_pools", value)
|
9002
|
+
|
8945
9003
|
@property
|
8946
9004
|
@pulumi.getter
|
8947
9005
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -9735,6 +9793,10 @@ if not MYPY:
|
|
9735
9793
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
9736
9794
|
`none`.
|
9737
9795
|
"""
|
9796
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
9797
|
+
"""
|
9798
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
9799
|
+
"""
|
9738
9800
|
pod_pids_limit: NotRequired[pulumi.Input[int]]
|
9739
9801
|
"""
|
9740
9802
|
Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
|
@@ -9748,6 +9810,7 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9748
9810
|
cpu_manager_policy: pulumi.Input[str],
|
9749
9811
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
9750
9812
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
9813
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
9751
9814
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
9752
9815
|
"""
|
9753
9816
|
:param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
|
@@ -9764,6 +9827,7 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9764
9827
|
value and accepts an invalid `default` value instead. While this remains true,
|
9765
9828
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
9766
9829
|
`none`.
|
9830
|
+
:param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
9767
9831
|
:param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
|
9768
9832
|
"""
|
9769
9833
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -9771,6 +9835,8 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9771
9835
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
9772
9836
|
if cpu_cfs_quota_period is not None:
|
9773
9837
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
9838
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
9839
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
9774
9840
|
if pod_pids_limit is not None:
|
9775
9841
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
9776
9842
|
|
@@ -9821,6 +9887,18 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9821
9887
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
9822
9888
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
9823
9889
|
|
9890
|
+
@property
|
9891
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
9892
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
9893
|
+
"""
|
9894
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
9895
|
+
"""
|
9896
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
9897
|
+
|
9898
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
9899
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
9900
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
9901
|
+
|
9824
9902
|
@property
|
9825
9903
|
@pulumi.getter(name="podPidsLimit")
|
9826
9904
|
def pod_pids_limit(self) -> Optional[pulumi.Input[int]]:
|
@@ -10795,7 +10873,12 @@ if not MYPY:
|
|
10795
10873
|
class ClusterNodePoolAutoConfigArgsDict(TypedDict):
|
10796
10874
|
network_tags: NotRequired[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgsDict']]
|
10797
10875
|
"""
|
10798
|
-
The network tag config for the cluster's automatically provisioned node pools.
|
10876
|
+
The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
10877
|
+
"""
|
10878
|
+
node_kubelet_config: NotRequired[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgsDict']]
|
10879
|
+
"""
|
10880
|
+
Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
10881
|
+
Structure is documented below.
|
10799
10882
|
"""
|
10800
10883
|
resource_manager_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10801
10884
|
"""
|
@@ -10808,13 +10891,18 @@ elif False:
|
|
10808
10891
|
class ClusterNodePoolAutoConfigArgs:
|
10809
10892
|
def __init__(__self__, *,
|
10810
10893
|
network_tags: Optional[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs']] = None,
|
10894
|
+
node_kubelet_config: Optional[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs']] = None,
|
10811
10895
|
resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
10812
10896
|
"""
|
10813
|
-
:param pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs'] network_tags: The network tag config for the cluster's automatically provisioned node pools.
|
10897
|
+
:param pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs'] network_tags: The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
10898
|
+
:param pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs'] node_kubelet_config: Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
10899
|
+
Structure is documented below.
|
10814
10900
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
10815
10901
|
"""
|
10816
10902
|
if network_tags is not None:
|
10817
10903
|
pulumi.set(__self__, "network_tags", network_tags)
|
10904
|
+
if node_kubelet_config is not None:
|
10905
|
+
pulumi.set(__self__, "node_kubelet_config", node_kubelet_config)
|
10818
10906
|
if resource_manager_tags is not None:
|
10819
10907
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
10820
10908
|
|
@@ -10822,7 +10910,7 @@ class ClusterNodePoolAutoConfigArgs:
|
|
10822
10910
|
@pulumi.getter(name="networkTags")
|
10823
10911
|
def network_tags(self) -> Optional[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs']]:
|
10824
10912
|
"""
|
10825
|
-
The network tag config for the cluster's automatically provisioned node pools.
|
10913
|
+
The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
10826
10914
|
"""
|
10827
10915
|
return pulumi.get(self, "network_tags")
|
10828
10916
|
|
@@ -10830,6 +10918,19 @@ class ClusterNodePoolAutoConfigArgs:
|
|
10830
10918
|
def network_tags(self, value: Optional[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs']]):
|
10831
10919
|
pulumi.set(self, "network_tags", value)
|
10832
10920
|
|
10921
|
+
@property
|
10922
|
+
@pulumi.getter(name="nodeKubeletConfig")
|
10923
|
+
def node_kubelet_config(self) -> Optional[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs']]:
|
10924
|
+
"""
|
10925
|
+
Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
10926
|
+
Structure is documented below.
|
10927
|
+
"""
|
10928
|
+
return pulumi.get(self, "node_kubelet_config")
|
10929
|
+
|
10930
|
+
@node_kubelet_config.setter
|
10931
|
+
def node_kubelet_config(self, value: Optional[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs']]):
|
10932
|
+
pulumi.set(self, "node_kubelet_config", value)
|
10933
|
+
|
10833
10934
|
@property
|
10834
10935
|
@pulumi.getter(name="resourceManagerTags")
|
10835
10936
|
def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -10875,6 +10976,38 @@ class ClusterNodePoolAutoConfigNetworkTagsArgs:
|
|
10875
10976
|
pulumi.set(self, "tags", value)
|
10876
10977
|
|
10877
10978
|
|
10979
|
+
if not MYPY:
|
10980
|
+
class ClusterNodePoolAutoConfigNodeKubeletConfigArgsDict(TypedDict):
|
10981
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
10982
|
+
"""
|
10983
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
10984
|
+
"""
|
10985
|
+
elif False:
|
10986
|
+
ClusterNodePoolAutoConfigNodeKubeletConfigArgsDict: TypeAlias = Mapping[str, Any]
|
10987
|
+
|
10988
|
+
@pulumi.input_type
|
10989
|
+
class ClusterNodePoolAutoConfigNodeKubeletConfigArgs:
|
10990
|
+
def __init__(__self__, *,
|
10991
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None):
|
10992
|
+
"""
|
10993
|
+
:param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
10994
|
+
"""
|
10995
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
10996
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
10997
|
+
|
10998
|
+
@property
|
10999
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
11000
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
11001
|
+
"""
|
11002
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
11003
|
+
"""
|
11004
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
11005
|
+
|
11006
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
11007
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
11008
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
11009
|
+
|
11010
|
+
|
10878
11011
|
if not MYPY:
|
10879
11012
|
class ClusterNodePoolAutoscalingArgsDict(TypedDict):
|
10880
11013
|
location_policy: NotRequired[pulumi.Input[str]]
|
@@ -11029,6 +11162,10 @@ if not MYPY:
|
|
11029
11162
|
"""
|
11030
11163
|
The default Google Container Filesystem (GCFS) configuration at the cluster level. e.g. enable [image streaming](https://cloud.google.com/kubernetes-engine/docs/how-to/image-streaming) across all the node pools within the cluster. Structure is documented below.
|
11031
11164
|
"""
|
11165
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
11166
|
+
"""
|
11167
|
+
Controls whether the kubelet read-only port is enabled for newly created node pools in the cluster. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
11168
|
+
"""
|
11032
11169
|
logging_variant: NotRequired[pulumi.Input[str]]
|
11033
11170
|
"""
|
11034
11171
|
The type of logging agent that is deployed by default for newly created node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT. See [Increasing logging agent throughput](https://cloud.google.com/stackdriver/docs/solutions/gke/managing-logs#throughput) for more information.
|
@@ -11041,16 +11178,20 @@ class ClusterNodePoolDefaultsNodeConfigDefaultsArgs:
|
|
11041
11178
|
def __init__(__self__, *,
|
11042
11179
|
containerd_config: Optional[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigArgs']] = None,
|
11043
11180
|
gcfs_config: Optional[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfigArgs']] = None,
|
11181
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
11044
11182
|
logging_variant: Optional[pulumi.Input[str]] = None):
|
11045
11183
|
"""
|
11046
11184
|
:param pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigArgs'] containerd_config: Parameters for containerd configuration.
|
11047
11185
|
:param pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfigArgs'] gcfs_config: The default Google Container Filesystem (GCFS) configuration at the cluster level. e.g. enable [image streaming](https://cloud.google.com/kubernetes-engine/docs/how-to/image-streaming) across all the node pools within the cluster. Structure is documented below.
|
11186
|
+
:param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled for newly created node pools in the cluster. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
11048
11187
|
:param pulumi.Input[str] logging_variant: The type of logging agent that is deployed by default for newly created node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT. See [Increasing logging agent throughput](https://cloud.google.com/stackdriver/docs/solutions/gke/managing-logs#throughput) for more information.
|
11049
11188
|
"""
|
11050
11189
|
if containerd_config is not None:
|
11051
11190
|
pulumi.set(__self__, "containerd_config", containerd_config)
|
11052
11191
|
if gcfs_config is not None:
|
11053
11192
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
11193
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
11194
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
11054
11195
|
if logging_variant is not None:
|
11055
11196
|
pulumi.set(__self__, "logging_variant", logging_variant)
|
11056
11197
|
|
@@ -11078,6 +11219,18 @@ class ClusterNodePoolDefaultsNodeConfigDefaultsArgs:
|
|
11078
11219
|
def gcfs_config(self, value: Optional[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfigArgs']]):
|
11079
11220
|
pulumi.set(self, "gcfs_config", value)
|
11080
11221
|
|
11222
|
+
@property
|
11223
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
11224
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
11225
|
+
"""
|
11226
|
+
Controls whether the kubelet read-only port is enabled for newly created node pools in the cluster. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
11227
|
+
"""
|
11228
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
11229
|
+
|
11230
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
11231
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
11232
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
11233
|
+
|
11081
11234
|
@property
|
11082
11235
|
@pulumi.getter(name="loggingVariant")
|
11083
11236
|
def logging_variant(self) -> Optional[pulumi.Input[str]]:
|
@@ -11919,6 +12072,10 @@ if not MYPY:
|
|
11919
12072
|
See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
|
11920
12073
|
for more information. Defaults to false.
|
11921
12074
|
"""
|
12075
|
+
storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
12076
|
+
"""
|
12077
|
+
The list of Storage Pools where boot disks are provisioned.
|
12078
|
+
"""
|
11922
12079
|
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
11923
12080
|
"""
|
11924
12081
|
The list of instance tags applied to all nodes. Tags are used to identify
|
@@ -11983,6 +12140,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
11983
12140
|
shielded_instance_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigShieldedInstanceConfigArgs']] = None,
|
11984
12141
|
sole_tenant_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigSoleTenantConfigArgs']] = None,
|
11985
12142
|
spot: Optional[pulumi.Input[bool]] = None,
|
12143
|
+
storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
11986
12144
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
11987
12145
|
taints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigTaintArgs']]]] = None,
|
11988
12146
|
workload_metadata_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs']] = None):
|
@@ -12073,6 +12231,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12073
12231
|
:param pulumi.Input[bool] spot: A boolean that represents whether the underlying node VMs are spot.
|
12074
12232
|
See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
|
12075
12233
|
for more information. Defaults to false.
|
12234
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
|
12076
12235
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes. Tags are used to identify
|
12077
12236
|
valid sources or targets for network firewalls.
|
12078
12237
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigTaintArgs']]] taints: A list of [Kubernetes taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
|
@@ -12160,6 +12319,8 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12160
12319
|
pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
|
12161
12320
|
if spot is not None:
|
12162
12321
|
pulumi.set(__self__, "spot", spot)
|
12322
|
+
if storage_pools is not None:
|
12323
|
+
pulumi.set(__self__, "storage_pools", storage_pools)
|
12163
12324
|
if tags is not None:
|
12164
12325
|
pulumi.set(__self__, "tags", tags)
|
12165
12326
|
if taints is not None:
|
@@ -12660,6 +12821,18 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12660
12821
|
def spot(self, value: Optional[pulumi.Input[bool]]):
|
12661
12822
|
pulumi.set(self, "spot", value)
|
12662
12823
|
|
12824
|
+
@property
|
12825
|
+
@pulumi.getter(name="storagePools")
|
12826
|
+
def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
12827
|
+
"""
|
12828
|
+
The list of Storage Pools where boot disks are provisioned.
|
12829
|
+
"""
|
12830
|
+
return pulumi.get(self, "storage_pools")
|
12831
|
+
|
12832
|
+
@storage_pools.setter
|
12833
|
+
def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
12834
|
+
pulumi.set(self, "storage_pools", value)
|
12835
|
+
|
12663
12836
|
@property
|
12664
12837
|
@pulumi.getter
|
12665
12838
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -13453,6 +13626,10 @@ if not MYPY:
|
|
13453
13626
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
13454
13627
|
`none`.
|
13455
13628
|
"""
|
13629
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
13630
|
+
"""
|
13631
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
13632
|
+
"""
|
13456
13633
|
pod_pids_limit: NotRequired[pulumi.Input[int]]
|
13457
13634
|
"""
|
13458
13635
|
Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
|
@@ -13466,6 +13643,7 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13466
13643
|
cpu_manager_policy: pulumi.Input[str],
|
13467
13644
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
13468
13645
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
13646
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
13469
13647
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
13470
13648
|
"""
|
13471
13649
|
:param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
|
@@ -13482,6 +13660,7 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13482
13660
|
value and accepts an invalid `default` value instead. While this remains true,
|
13483
13661
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
13484
13662
|
`none`.
|
13663
|
+
:param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
13485
13664
|
:param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
|
13486
13665
|
"""
|
13487
13666
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -13489,6 +13668,8 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13489
13668
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
13490
13669
|
if cpu_cfs_quota_period is not None:
|
13491
13670
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
13671
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
13672
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
13492
13673
|
if pod_pids_limit is not None:
|
13493
13674
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
13494
13675
|
|
@@ -13539,6 +13720,18 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13539
13720
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
13540
13721
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
13541
13722
|
|
13723
|
+
@property
|
13724
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
13725
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
13726
|
+
"""
|
13727
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
13728
|
+
"""
|
13729
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
13730
|
+
|
13731
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
13732
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
13733
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
13734
|
+
|
13542
13735
|
@property
|
13543
13736
|
@pulumi.getter(name="podPidsLimit")
|
13544
13737
|
def pod_pids_limit(self) -> Optional[pulumi.Input[int]]:
|
@@ -16107,6 +16300,10 @@ if not MYPY:
|
|
16107
16300
|
"""
|
16108
16301
|
Whether the nodes are created as spot VM instances.
|
16109
16302
|
"""
|
16303
|
+
storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
16304
|
+
"""
|
16305
|
+
The list of Storage Pools where boot disks are provisioned.
|
16306
|
+
"""
|
16110
16307
|
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
16111
16308
|
"""
|
16112
16309
|
The list of instance tags applied to all nodes.
|
@@ -16162,6 +16359,7 @@ class NodePoolNodeConfigArgs:
|
|
16162
16359
|
shielded_instance_config: Optional[pulumi.Input['NodePoolNodeConfigShieldedInstanceConfigArgs']] = None,
|
16163
16360
|
sole_tenant_config: Optional[pulumi.Input['NodePoolNodeConfigSoleTenantConfigArgs']] = None,
|
16164
16361
|
spot: Optional[pulumi.Input[bool]] = None,
|
16362
|
+
storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
16165
16363
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
16166
16364
|
taints: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]]] = None,
|
16167
16365
|
workload_metadata_config: Optional[pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs']] = None):
|
@@ -16206,6 +16404,7 @@ class NodePoolNodeConfigArgs:
|
|
16206
16404
|
:param pulumi.Input['NodePoolNodeConfigShieldedInstanceConfigArgs'] shielded_instance_config: Shielded Instance options.
|
16207
16405
|
:param pulumi.Input['NodePoolNodeConfigSoleTenantConfigArgs'] sole_tenant_config: Node affinity options for sole tenant node pools.
|
16208
16406
|
:param pulumi.Input[bool] spot: Whether the nodes are created as spot VM instances.
|
16407
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
|
16209
16408
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes.
|
16210
16409
|
:param pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]] taints: List of Kubernetes taints to be applied to each node.
|
16211
16410
|
:param pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_config: The workload metadata configuration for this node.
|
@@ -16284,6 +16483,8 @@ class NodePoolNodeConfigArgs:
|
|
16284
16483
|
pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
|
16285
16484
|
if spot is not None:
|
16286
16485
|
pulumi.set(__self__, "spot", spot)
|
16486
|
+
if storage_pools is not None:
|
16487
|
+
pulumi.set(__self__, "storage_pools", storage_pools)
|
16287
16488
|
if tags is not None:
|
16288
16489
|
pulumi.set(__self__, "tags", tags)
|
16289
16490
|
if taints is not None:
|
@@ -16738,6 +16939,18 @@ class NodePoolNodeConfigArgs:
|
|
16738
16939
|
def spot(self, value: Optional[pulumi.Input[bool]]):
|
16739
16940
|
pulumi.set(self, "spot", value)
|
16740
16941
|
|
16942
|
+
@property
|
16943
|
+
@pulumi.getter(name="storagePools")
|
16944
|
+
def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
16945
|
+
"""
|
16946
|
+
The list of Storage Pools where boot disks are provisioned.
|
16947
|
+
"""
|
16948
|
+
return pulumi.get(self, "storage_pools")
|
16949
|
+
|
16950
|
+
@storage_pools.setter
|
16951
|
+
def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
16952
|
+
pulumi.set(self, "storage_pools", value)
|
16953
|
+
|
16741
16954
|
@property
|
16742
16955
|
@pulumi.getter
|
16743
16956
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -17484,6 +17697,10 @@ if not MYPY:
|
|
17484
17697
|
"""
|
17485
17698
|
Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
17486
17699
|
"""
|
17700
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
17701
|
+
"""
|
17702
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
17703
|
+
"""
|
17487
17704
|
pod_pids_limit: NotRequired[pulumi.Input[int]]
|
17488
17705
|
"""
|
17489
17706
|
Controls the maximum number of processes allowed to run in a pod.
|
@@ -17497,11 +17714,13 @@ class NodePoolNodeConfigKubeletConfigArgs:
|
|
17497
17714
|
cpu_manager_policy: pulumi.Input[str],
|
17498
17715
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
17499
17716
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
17717
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
17500
17718
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
17501
17719
|
"""
|
17502
17720
|
:param pulumi.Input[str] cpu_manager_policy: Control the CPU management policy on the node.
|
17503
17721
|
:param pulumi.Input[bool] cpu_cfs_quota: Enable CPU CFS quota enforcement for containers that specify CPU limits.
|
17504
17722
|
:param pulumi.Input[str] cpu_cfs_quota_period: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
17723
|
+
:param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
17505
17724
|
:param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod.
|
17506
17725
|
"""
|
17507
17726
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -17509,6 +17728,8 @@ class NodePoolNodeConfigKubeletConfigArgs:
|
|
17509
17728
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
17510
17729
|
if cpu_cfs_quota_period is not None:
|
17511
17730
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
17731
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
17732
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
17512
17733
|
if pod_pids_limit is not None:
|
17513
17734
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
17514
17735
|
|
@@ -17548,6 +17769,18 @@ class NodePoolNodeConfigKubeletConfigArgs:
|
|
17548
17769
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
17549
17770
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
17550
17771
|
|
17772
|
+
@property
|
17773
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
17774
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
17775
|
+
"""
|
17776
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
17777
|
+
"""
|
17778
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
17779
|
+
|
17780
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
17781
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
17782
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
17783
|
+
|
17551
17784
|
@property
|
17552
17785
|
@pulumi.getter(name="podPidsLimit")
|
17553
17786
|
def pod_pids_limit(self) -> Optional[pulumi.Input[int]]:
|