pulumi-gcp 8.3.0a1727223968__py3-none-any.whl → 8.3.0a1727226164__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 +120 -0
- pulumi_gcp/alloydb/_inputs.py +20 -0
- pulumi_gcp/alloydb/instance.py +36 -0
- pulumi_gcp/alloydb/outputs.py +14 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +1400 -0
- pulumi_gcp/compute/attached_disk.py +103 -0
- pulumi_gcp/compute/backend_service.py +29 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +769 -0
- pulumi_gcp/compute/outputs.py +1019 -0
- pulumi_gcp/compute/region_backend_service.py +29 -22
- pulumi_gcp/compute/router_nat.py +27 -66
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +72 -99
- pulumi_gcp/container/outputs.py +53 -70
- pulumi_gcp/databasemigrationservice/__init__.py +1 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +362 -0
- pulumi_gcp/databasemigrationservice/migration_job.py +1739 -0
- pulumi_gcp/databasemigrationservice/outputs.py +268 -0
- pulumi_gcp/dataproc/get_metastore_service.py +11 -1
- pulumi_gcp/dataproc/metastore_service.py +93 -0
- pulumi_gcp/developerconnect/_inputs.py +42 -39
- pulumi_gcp/developerconnect/connection.py +86 -83
- pulumi_gcp/developerconnect/outputs.py +28 -26
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +131 -0
- pulumi_gcp/discoveryengine/outputs.py +131 -0
- pulumi_gcp/discoveryengine/target_site.py +870 -0
- pulumi_gcp/dns/managed_zone.py +1 -1
- pulumi_gcp/filestore/get_instance.py +21 -1
- pulumi_gcp/filestore/instance.py +94 -0
- pulumi_gcp/gkehub/feature_membership.py +140 -62
- pulumi_gcp/healthcare/__init__.py +1 -0
- pulumi_gcp/healthcare/_inputs.py +39 -0
- pulumi_gcp/healthcare/outputs.py +40 -0
- pulumi_gcp/healthcare/workspace.py +465 -0
- pulumi_gcp/looker/instance.py +81 -0
- pulumi_gcp/netapp/_inputs.py +63 -0
- pulumi_gcp/netapp/outputs.py +57 -0
- pulumi_gcp/netapp/storage_pool.py +54 -0
- pulumi_gcp/netapp/volume.py +82 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +43 -7
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/__init__.py +8 -0
- pulumi_gcp/secretmanager/_inputs.py +308 -0
- pulumi_gcp/secretmanager/get_regional_secret.py +279 -0
- pulumi_gcp/secretmanager/get_regional_secret_iam_policy.py +173 -0
- pulumi_gcp/secretmanager/get_regional_secret_version.py +241 -0
- pulumi_gcp/secretmanager/outputs.py +336 -0
- pulumi_gcp/secretmanager/regional_secret.py +1433 -0
- pulumi_gcp/secretmanager/regional_secret_iam_binding.py +1082 -0
- pulumi_gcp/secretmanager/regional_secret_iam_member.py +1082 -0
- pulumi_gcp/secretmanager/regional_secret_iam_policy.py +901 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +753 -0
- pulumi_gcp/securitycenter/__init__.py +4 -0
- pulumi_gcp/securitycenter/folder_scc_big_query_export.py +795 -0
- pulumi_gcp/securitycenter/organization_scc_big_query_export.py +738 -0
- pulumi_gcp/securitycenter/project_scc_big_query_export.py +749 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_export.py +862 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +6 -2
- pulumi_gcp/siteverification/__init__.py +3 -0
- pulumi_gcp/siteverification/_inputs.py +85 -0
- pulumi_gcp/siteverification/outputs.py +57 -0
- pulumi_gcp/siteverification/web_resource.py +398 -0
- pulumi_gcp/spanner/__init__.py +1 -0
- pulumi_gcp/spanner/_inputs.py +129 -0
- pulumi_gcp/spanner/backup_schedule.py +748 -0
- pulumi_gcp/spanner/get_instance.py +11 -1
- pulumi_gcp/spanner/instance.py +56 -0
- pulumi_gcp/spanner/outputs.py +93 -0
- {pulumi_gcp-8.3.0a1727223968.dist-info → pulumi_gcp-8.3.0a1727226164.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.3.0a1727223968.dist-info → pulumi_gcp-8.3.0a1727226164.dist-info}/RECORD +76 -56
- {pulumi_gcp-8.3.0a1727223968.dist-info → pulumi_gcp-8.3.0a1727226164.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.3.0a1727223968.dist-info → pulumi_gcp-8.3.0a1727226164.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/_inputs.py
CHANGED
@@ -9770,12 +9770,6 @@ class ClusterNodeConfigHostMaintenancePolicyArgs:
|
|
9770
9770
|
|
9771
9771
|
if not MYPY:
|
9772
9772
|
class ClusterNodeConfigKubeletConfigArgsDict(TypedDict):
|
9773
|
-
cpu_manager_policy: pulumi.Input[str]
|
9774
|
-
"""
|
9775
|
-
The CPU management policy on the node. See
|
9776
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
9777
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
9778
|
-
"""
|
9779
9773
|
cpu_cfs_quota: NotRequired[pulumi.Input[bool]]
|
9780
9774
|
"""
|
9781
9775
|
If true, enables CPU CFS quota enforcement for
|
@@ -9787,11 +9781,12 @@ if not MYPY:
|
|
9787
9781
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
9788
9782
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
9789
9783
|
"h". The value must be a positive duration.
|
9790
|
-
|
9791
|
-
|
9792
|
-
|
9793
|
-
|
9794
|
-
|
9784
|
+
"""
|
9785
|
+
cpu_manager_policy: NotRequired[pulumi.Input[str]]
|
9786
|
+
"""
|
9787
|
+
The CPU management policy on the node. See
|
9788
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
9789
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
9795
9790
|
"""
|
9796
9791
|
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
9797
9792
|
"""
|
@@ -9807,53 +9802,35 @@ elif False:
|
|
9807
9802
|
@pulumi.input_type
|
9808
9803
|
class ClusterNodeConfigKubeletConfigArgs:
|
9809
9804
|
def __init__(__self__, *,
|
9810
|
-
cpu_manager_policy: pulumi.Input[str],
|
9811
9805
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
9812
9806
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
9807
|
+
cpu_manager_policy: Optional[pulumi.Input[str]] = None,
|
9813
9808
|
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
9814
9809
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
9815
9810
|
"""
|
9816
|
-
:param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
|
9817
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
9818
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
9819
9811
|
:param pulumi.Input[bool] cpu_cfs_quota: If true, enables CPU CFS quota enforcement for
|
9820
9812
|
containers that specify CPU limits.
|
9821
9813
|
:param pulumi.Input[str] cpu_cfs_quota_period: The CPU CFS quota period value. Specified
|
9822
9814
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
9823
9815
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
9824
9816
|
"h". The value must be a positive duration.
|
9825
|
-
|
9826
|
-
|
9827
|
-
|
9828
|
-
not specifying the `kubelet_config` block should be the equivalent of specifying
|
9829
|
-
`none`.
|
9817
|
+
:param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
|
9818
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
9819
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
9830
9820
|
: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`.
|
9831
9821
|
: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.
|
9832
9822
|
"""
|
9833
|
-
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
9834
9823
|
if cpu_cfs_quota is not None:
|
9835
9824
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
9836
9825
|
if cpu_cfs_quota_period is not None:
|
9837
9826
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
9827
|
+
if cpu_manager_policy is not None:
|
9828
|
+
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
9838
9829
|
if insecure_kubelet_readonly_port_enabled is not None:
|
9839
9830
|
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
9840
9831
|
if pod_pids_limit is not None:
|
9841
9832
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
9842
9833
|
|
9843
|
-
@property
|
9844
|
-
@pulumi.getter(name="cpuManagerPolicy")
|
9845
|
-
def cpu_manager_policy(self) -> pulumi.Input[str]:
|
9846
|
-
"""
|
9847
|
-
The CPU management policy on the node. See
|
9848
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
9849
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
9850
|
-
"""
|
9851
|
-
return pulumi.get(self, "cpu_manager_policy")
|
9852
|
-
|
9853
|
-
@cpu_manager_policy.setter
|
9854
|
-
def cpu_manager_policy(self, value: pulumi.Input[str]):
|
9855
|
-
pulumi.set(self, "cpu_manager_policy", value)
|
9856
|
-
|
9857
9834
|
@property
|
9858
9835
|
@pulumi.getter(name="cpuCfsQuota")
|
9859
9836
|
def cpu_cfs_quota(self) -> Optional[pulumi.Input[bool]]:
|
@@ -9875,11 +9852,6 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9875
9852
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
9876
9853
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
9877
9854
|
"h". The value must be a positive duration.
|
9878
|
-
|
9879
|
-
> Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
|
9880
|
-
value and accepts an invalid `default` value instead. While this remains true,
|
9881
|
-
not specifying the `kubelet_config` block should be the equivalent of specifying
|
9882
|
-
`none`.
|
9883
9855
|
"""
|
9884
9856
|
return pulumi.get(self, "cpu_cfs_quota_period")
|
9885
9857
|
|
@@ -9887,6 +9859,20 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9887
9859
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
9888
9860
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
9889
9861
|
|
9862
|
+
@property
|
9863
|
+
@pulumi.getter(name="cpuManagerPolicy")
|
9864
|
+
def cpu_manager_policy(self) -> Optional[pulumi.Input[str]]:
|
9865
|
+
"""
|
9866
|
+
The CPU management policy on the node. See
|
9867
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
9868
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
9869
|
+
"""
|
9870
|
+
return pulumi.get(self, "cpu_manager_policy")
|
9871
|
+
|
9872
|
+
@cpu_manager_policy.setter
|
9873
|
+
def cpu_manager_policy(self, value: Optional[pulumi.Input[str]]):
|
9874
|
+
pulumi.set(self, "cpu_manager_policy", value)
|
9875
|
+
|
9890
9876
|
@property
|
9891
9877
|
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
9892
9878
|
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
@@ -13603,12 +13589,6 @@ class ClusterNodePoolNodeConfigHostMaintenancePolicyArgs:
|
|
13603
13589
|
|
13604
13590
|
if not MYPY:
|
13605
13591
|
class ClusterNodePoolNodeConfigKubeletConfigArgsDict(TypedDict):
|
13606
|
-
cpu_manager_policy: pulumi.Input[str]
|
13607
|
-
"""
|
13608
|
-
The CPU management policy on the node. See
|
13609
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
13610
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
13611
|
-
"""
|
13612
13592
|
cpu_cfs_quota: NotRequired[pulumi.Input[bool]]
|
13613
13593
|
"""
|
13614
13594
|
If true, enables CPU CFS quota enforcement for
|
@@ -13620,11 +13600,12 @@ if not MYPY:
|
|
13620
13600
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
13621
13601
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
13622
13602
|
"h". The value must be a positive duration.
|
13623
|
-
|
13624
|
-
|
13625
|
-
|
13626
|
-
|
13627
|
-
|
13603
|
+
"""
|
13604
|
+
cpu_manager_policy: NotRequired[pulumi.Input[str]]
|
13605
|
+
"""
|
13606
|
+
The CPU management policy on the node. See
|
13607
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
13608
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
13628
13609
|
"""
|
13629
13610
|
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
13630
13611
|
"""
|
@@ -13640,53 +13621,35 @@ elif False:
|
|
13640
13621
|
@pulumi.input_type
|
13641
13622
|
class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
13642
13623
|
def __init__(__self__, *,
|
13643
|
-
cpu_manager_policy: pulumi.Input[str],
|
13644
13624
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
13645
13625
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
13626
|
+
cpu_manager_policy: Optional[pulumi.Input[str]] = None,
|
13646
13627
|
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
13647
13628
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
13648
13629
|
"""
|
13649
|
-
:param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
|
13650
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
13651
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
13652
13630
|
:param pulumi.Input[bool] cpu_cfs_quota: If true, enables CPU CFS quota enforcement for
|
13653
13631
|
containers that specify CPU limits.
|
13654
13632
|
:param pulumi.Input[str] cpu_cfs_quota_period: The CPU CFS quota period value. Specified
|
13655
13633
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
13656
13634
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
13657
13635
|
"h". The value must be a positive duration.
|
13658
|
-
|
13659
|
-
|
13660
|
-
|
13661
|
-
not specifying the `kubelet_config` block should be the equivalent of specifying
|
13662
|
-
`none`.
|
13636
|
+
:param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
|
13637
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
13638
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
13663
13639
|
: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`.
|
13664
13640
|
: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.
|
13665
13641
|
"""
|
13666
|
-
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
13667
13642
|
if cpu_cfs_quota is not None:
|
13668
13643
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
13669
13644
|
if cpu_cfs_quota_period is not None:
|
13670
13645
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
13646
|
+
if cpu_manager_policy is not None:
|
13647
|
+
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
13671
13648
|
if insecure_kubelet_readonly_port_enabled is not None:
|
13672
13649
|
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
13673
13650
|
if pod_pids_limit is not None:
|
13674
13651
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
13675
13652
|
|
13676
|
-
@property
|
13677
|
-
@pulumi.getter(name="cpuManagerPolicy")
|
13678
|
-
def cpu_manager_policy(self) -> pulumi.Input[str]:
|
13679
|
-
"""
|
13680
|
-
The CPU management policy on the node. See
|
13681
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
13682
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
13683
|
-
"""
|
13684
|
-
return pulumi.get(self, "cpu_manager_policy")
|
13685
|
-
|
13686
|
-
@cpu_manager_policy.setter
|
13687
|
-
def cpu_manager_policy(self, value: pulumi.Input[str]):
|
13688
|
-
pulumi.set(self, "cpu_manager_policy", value)
|
13689
|
-
|
13690
13653
|
@property
|
13691
13654
|
@pulumi.getter(name="cpuCfsQuota")
|
13692
13655
|
def cpu_cfs_quota(self) -> Optional[pulumi.Input[bool]]:
|
@@ -13708,11 +13671,6 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13708
13671
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
13709
13672
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
13710
13673
|
"h". The value must be a positive duration.
|
13711
|
-
|
13712
|
-
> Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
|
13713
|
-
value and accepts an invalid `default` value instead. While this remains true,
|
13714
|
-
not specifying the `kubelet_config` block should be the equivalent of specifying
|
13715
|
-
`none`.
|
13716
13674
|
"""
|
13717
13675
|
return pulumi.get(self, "cpu_cfs_quota_period")
|
13718
13676
|
|
@@ -13720,6 +13678,20 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13720
13678
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
13721
13679
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
13722
13680
|
|
13681
|
+
@property
|
13682
|
+
@pulumi.getter(name="cpuManagerPolicy")
|
13683
|
+
def cpu_manager_policy(self) -> Optional[pulumi.Input[str]]:
|
13684
|
+
"""
|
13685
|
+
The CPU management policy on the node. See
|
13686
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
13687
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
13688
|
+
"""
|
13689
|
+
return pulumi.get(self, "cpu_manager_policy")
|
13690
|
+
|
13691
|
+
@cpu_manager_policy.setter
|
13692
|
+
def cpu_manager_policy(self, value: Optional[pulumi.Input[str]]):
|
13693
|
+
pulumi.set(self, "cpu_manager_policy", value)
|
13694
|
+
|
13723
13695
|
@property
|
13724
13696
|
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
13725
13697
|
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
@@ -17685,10 +17657,6 @@ class NodePoolNodeConfigHostMaintenancePolicyArgs:
|
|
17685
17657
|
|
17686
17658
|
if not MYPY:
|
17687
17659
|
class NodePoolNodeConfigKubeletConfigArgsDict(TypedDict):
|
17688
|
-
cpu_manager_policy: pulumi.Input[str]
|
17689
|
-
"""
|
17690
|
-
Control the CPU management policy on the node.
|
17691
|
-
"""
|
17692
17660
|
cpu_cfs_quota: NotRequired[pulumi.Input[bool]]
|
17693
17661
|
"""
|
17694
17662
|
Enable CPU CFS quota enforcement for containers that specify CPU limits.
|
@@ -17697,6 +17665,10 @@ if not MYPY:
|
|
17697
17665
|
"""
|
17698
17666
|
Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
17699
17667
|
"""
|
17668
|
+
cpu_manager_policy: NotRequired[pulumi.Input[str]]
|
17669
|
+
"""
|
17670
|
+
Control the CPU management policy on the node.
|
17671
|
+
"""
|
17700
17672
|
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
17701
17673
|
"""
|
17702
17674
|
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
@@ -17711,40 +17683,29 @@ elif False:
|
|
17711
17683
|
@pulumi.input_type
|
17712
17684
|
class NodePoolNodeConfigKubeletConfigArgs:
|
17713
17685
|
def __init__(__self__, *,
|
17714
|
-
cpu_manager_policy: pulumi.Input[str],
|
17715
17686
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
17716
17687
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
17688
|
+
cpu_manager_policy: Optional[pulumi.Input[str]] = None,
|
17717
17689
|
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
17718
17690
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
17719
17691
|
"""
|
17720
|
-
:param pulumi.Input[str] cpu_manager_policy: Control the CPU management policy on the node.
|
17721
17692
|
:param pulumi.Input[bool] cpu_cfs_quota: Enable CPU CFS quota enforcement for containers that specify CPU limits.
|
17722
17693
|
:param pulumi.Input[str] cpu_cfs_quota_period: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
17694
|
+
:param pulumi.Input[str] cpu_manager_policy: Control the CPU management policy on the node.
|
17723
17695
|
: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`.
|
17724
17696
|
:param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod.
|
17725
17697
|
"""
|
17726
|
-
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
17727
17698
|
if cpu_cfs_quota is not None:
|
17728
17699
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
17729
17700
|
if cpu_cfs_quota_period is not None:
|
17730
17701
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
17702
|
+
if cpu_manager_policy is not None:
|
17703
|
+
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
17731
17704
|
if insecure_kubelet_readonly_port_enabled is not None:
|
17732
17705
|
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
17733
17706
|
if pod_pids_limit is not None:
|
17734
17707
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
17735
17708
|
|
17736
|
-
@property
|
17737
|
-
@pulumi.getter(name="cpuManagerPolicy")
|
17738
|
-
def cpu_manager_policy(self) -> pulumi.Input[str]:
|
17739
|
-
"""
|
17740
|
-
Control the CPU management policy on the node.
|
17741
|
-
"""
|
17742
|
-
return pulumi.get(self, "cpu_manager_policy")
|
17743
|
-
|
17744
|
-
@cpu_manager_policy.setter
|
17745
|
-
def cpu_manager_policy(self, value: pulumi.Input[str]):
|
17746
|
-
pulumi.set(self, "cpu_manager_policy", value)
|
17747
|
-
|
17748
17709
|
@property
|
17749
17710
|
@pulumi.getter(name="cpuCfsQuota")
|
17750
17711
|
def cpu_cfs_quota(self) -> Optional[pulumi.Input[bool]]:
|
@@ -17769,6 +17730,18 @@ class NodePoolNodeConfigKubeletConfigArgs:
|
|
17769
17730
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
17770
17731
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
17771
17732
|
|
17733
|
+
@property
|
17734
|
+
@pulumi.getter(name="cpuManagerPolicy")
|
17735
|
+
def cpu_manager_policy(self) -> Optional[pulumi.Input[str]]:
|
17736
|
+
"""
|
17737
|
+
Control the CPU management policy on the node.
|
17738
|
+
"""
|
17739
|
+
return pulumi.get(self, "cpu_manager_policy")
|
17740
|
+
|
17741
|
+
@cpu_manager_policy.setter
|
17742
|
+
def cpu_manager_policy(self, value: Optional[pulumi.Input[str]]):
|
17743
|
+
pulumi.set(self, "cpu_manager_policy", value)
|
17744
|
+
|
17772
17745
|
@property
|
17773
17746
|
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
17774
17747
|
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -7923,12 +7923,12 @@ class ClusterNodeConfigKubeletConfig(dict):
|
|
7923
7923
|
@staticmethod
|
7924
7924
|
def __key_warning(key: str):
|
7925
7925
|
suggest = None
|
7926
|
-
if key == "
|
7927
|
-
suggest = "cpu_manager_policy"
|
7928
|
-
elif key == "cpuCfsQuota":
|
7926
|
+
if key == "cpuCfsQuota":
|
7929
7927
|
suggest = "cpu_cfs_quota"
|
7930
7928
|
elif key == "cpuCfsQuotaPeriod":
|
7931
7929
|
suggest = "cpu_cfs_quota_period"
|
7930
|
+
elif key == "cpuManagerPolicy":
|
7931
|
+
suggest = "cpu_manager_policy"
|
7932
7932
|
elif key == "insecureKubeletReadonlyPortEnabled":
|
7933
7933
|
suggest = "insecure_kubelet_readonly_port_enabled"
|
7934
7934
|
elif key == "podPidsLimit":
|
@@ -7946,49 +7946,35 @@ class ClusterNodeConfigKubeletConfig(dict):
|
|
7946
7946
|
return super().get(key, default)
|
7947
7947
|
|
7948
7948
|
def __init__(__self__, *,
|
7949
|
-
cpu_manager_policy: str,
|
7950
7949
|
cpu_cfs_quota: Optional[bool] = None,
|
7951
7950
|
cpu_cfs_quota_period: Optional[str] = None,
|
7951
|
+
cpu_manager_policy: Optional[str] = None,
|
7952
7952
|
insecure_kubelet_readonly_port_enabled: Optional[str] = None,
|
7953
7953
|
pod_pids_limit: Optional[int] = None):
|
7954
7954
|
"""
|
7955
|
-
:param str cpu_manager_policy: The CPU management policy on the node. See
|
7956
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
7957
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
7958
7955
|
:param bool cpu_cfs_quota: If true, enables CPU CFS quota enforcement for
|
7959
7956
|
containers that specify CPU limits.
|
7960
7957
|
:param str cpu_cfs_quota_period: The CPU CFS quota period value. Specified
|
7961
7958
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
7962
7959
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
7963
7960
|
"h". The value must be a positive duration.
|
7964
|
-
|
7965
|
-
|
7966
|
-
|
7967
|
-
not specifying the `kubelet_config` block should be the equivalent of specifying
|
7968
|
-
`none`.
|
7961
|
+
:param str cpu_manager_policy: The CPU management policy on the node. See
|
7962
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
7963
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
7969
7964
|
:param 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`.
|
7970
7965
|
:param 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.
|
7971
7966
|
"""
|
7972
|
-
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
7973
7967
|
if cpu_cfs_quota is not None:
|
7974
7968
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
7975
7969
|
if cpu_cfs_quota_period is not None:
|
7976
7970
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
7971
|
+
if cpu_manager_policy is not None:
|
7972
|
+
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
7977
7973
|
if insecure_kubelet_readonly_port_enabled is not None:
|
7978
7974
|
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
7979
7975
|
if pod_pids_limit is not None:
|
7980
7976
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
7981
7977
|
|
7982
|
-
@property
|
7983
|
-
@pulumi.getter(name="cpuManagerPolicy")
|
7984
|
-
def cpu_manager_policy(self) -> str:
|
7985
|
-
"""
|
7986
|
-
The CPU management policy on the node. See
|
7987
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
7988
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
7989
|
-
"""
|
7990
|
-
return pulumi.get(self, "cpu_manager_policy")
|
7991
|
-
|
7992
7978
|
@property
|
7993
7979
|
@pulumi.getter(name="cpuCfsQuota")
|
7994
7980
|
def cpu_cfs_quota(self) -> Optional[bool]:
|
@@ -8006,14 +7992,19 @@ class ClusterNodeConfigKubeletConfig(dict):
|
|
8006
7992
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
8007
7993
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
8008
7994
|
"h". The value must be a positive duration.
|
8009
|
-
|
8010
|
-
> Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
|
8011
|
-
value and accepts an invalid `default` value instead. While this remains true,
|
8012
|
-
not specifying the `kubelet_config` block should be the equivalent of specifying
|
8013
|
-
`none`.
|
8014
7995
|
"""
|
8015
7996
|
return pulumi.get(self, "cpu_cfs_quota_period")
|
8016
7997
|
|
7998
|
+
@property
|
7999
|
+
@pulumi.getter(name="cpuManagerPolicy")
|
8000
|
+
def cpu_manager_policy(self) -> Optional[str]:
|
8001
|
+
"""
|
8002
|
+
The CPU management policy on the node. See
|
8003
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
8004
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
8005
|
+
"""
|
8006
|
+
return pulumi.get(self, "cpu_manager_policy")
|
8007
|
+
|
8017
8008
|
@property
|
8018
8009
|
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
8019
8010
|
def insecure_kubelet_readonly_port_enabled(self) -> Optional[str]:
|
@@ -10946,12 +10937,12 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
|
|
10946
10937
|
@staticmethod
|
10947
10938
|
def __key_warning(key: str):
|
10948
10939
|
suggest = None
|
10949
|
-
if key == "
|
10950
|
-
suggest = "cpu_manager_policy"
|
10951
|
-
elif key == "cpuCfsQuota":
|
10940
|
+
if key == "cpuCfsQuota":
|
10952
10941
|
suggest = "cpu_cfs_quota"
|
10953
10942
|
elif key == "cpuCfsQuotaPeriod":
|
10954
10943
|
suggest = "cpu_cfs_quota_period"
|
10944
|
+
elif key == "cpuManagerPolicy":
|
10945
|
+
suggest = "cpu_manager_policy"
|
10955
10946
|
elif key == "insecureKubeletReadonlyPortEnabled":
|
10956
10947
|
suggest = "insecure_kubelet_readonly_port_enabled"
|
10957
10948
|
elif key == "podPidsLimit":
|
@@ -10969,49 +10960,35 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
|
|
10969
10960
|
return super().get(key, default)
|
10970
10961
|
|
10971
10962
|
def __init__(__self__, *,
|
10972
|
-
cpu_manager_policy: str,
|
10973
10963
|
cpu_cfs_quota: Optional[bool] = None,
|
10974
10964
|
cpu_cfs_quota_period: Optional[str] = None,
|
10965
|
+
cpu_manager_policy: Optional[str] = None,
|
10975
10966
|
insecure_kubelet_readonly_port_enabled: Optional[str] = None,
|
10976
10967
|
pod_pids_limit: Optional[int] = None):
|
10977
10968
|
"""
|
10978
|
-
:param str cpu_manager_policy: The CPU management policy on the node. See
|
10979
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
10980
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
10981
10969
|
:param bool cpu_cfs_quota: If true, enables CPU CFS quota enforcement for
|
10982
10970
|
containers that specify CPU limits.
|
10983
10971
|
:param str cpu_cfs_quota_period: The CPU CFS quota period value. Specified
|
10984
10972
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
10985
10973
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
10986
10974
|
"h". The value must be a positive duration.
|
10987
|
-
|
10988
|
-
|
10989
|
-
|
10990
|
-
not specifying the `kubelet_config` block should be the equivalent of specifying
|
10991
|
-
`none`.
|
10975
|
+
:param str cpu_manager_policy: The CPU management policy on the node. See
|
10976
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
10977
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
10992
10978
|
:param 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`.
|
10993
10979
|
:param 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.
|
10994
10980
|
"""
|
10995
|
-
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
10996
10981
|
if cpu_cfs_quota is not None:
|
10997
10982
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
10998
10983
|
if cpu_cfs_quota_period is not None:
|
10999
10984
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
10985
|
+
if cpu_manager_policy is not None:
|
10986
|
+
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
11000
10987
|
if insecure_kubelet_readonly_port_enabled is not None:
|
11001
10988
|
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
11002
10989
|
if pod_pids_limit is not None:
|
11003
10990
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
11004
10991
|
|
11005
|
-
@property
|
11006
|
-
@pulumi.getter(name="cpuManagerPolicy")
|
11007
|
-
def cpu_manager_policy(self) -> str:
|
11008
|
-
"""
|
11009
|
-
The CPU management policy on the node. See
|
11010
|
-
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
11011
|
-
One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
|
11012
|
-
"""
|
11013
|
-
return pulumi.get(self, "cpu_manager_policy")
|
11014
|
-
|
11015
10992
|
@property
|
11016
10993
|
@pulumi.getter(name="cpuCfsQuota")
|
11017
10994
|
def cpu_cfs_quota(self) -> Optional[bool]:
|
@@ -11029,14 +11006,19 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
|
|
11029
11006
|
as a sequence of decimal numbers, each with optional fraction and a unit suffix,
|
11030
11007
|
such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
|
11031
11008
|
"h". The value must be a positive duration.
|
11032
|
-
|
11033
|
-
> Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
|
11034
|
-
value and accepts an invalid `default` value instead. While this remains true,
|
11035
|
-
not specifying the `kubelet_config` block should be the equivalent of specifying
|
11036
|
-
`none`.
|
11037
11009
|
"""
|
11038
11010
|
return pulumi.get(self, "cpu_cfs_quota_period")
|
11039
11011
|
|
11012
|
+
@property
|
11013
|
+
@pulumi.getter(name="cpuManagerPolicy")
|
11014
|
+
def cpu_manager_policy(self) -> Optional[str]:
|
11015
|
+
"""
|
11016
|
+
The CPU management policy on the node. See
|
11017
|
+
[K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
|
11018
|
+
One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
|
11019
|
+
"""
|
11020
|
+
return pulumi.get(self, "cpu_manager_policy")
|
11021
|
+
|
11040
11022
|
@property
|
11041
11023
|
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
11042
11024
|
def insecure_kubelet_readonly_port_enabled(self) -> Optional[str]:
|
@@ -14188,12 +14170,12 @@ class NodePoolNodeConfigKubeletConfig(dict):
|
|
14188
14170
|
@staticmethod
|
14189
14171
|
def __key_warning(key: str):
|
14190
14172
|
suggest = None
|
14191
|
-
if key == "
|
14192
|
-
suggest = "cpu_manager_policy"
|
14193
|
-
elif key == "cpuCfsQuota":
|
14173
|
+
if key == "cpuCfsQuota":
|
14194
14174
|
suggest = "cpu_cfs_quota"
|
14195
14175
|
elif key == "cpuCfsQuotaPeriod":
|
14196
14176
|
suggest = "cpu_cfs_quota_period"
|
14177
|
+
elif key == "cpuManagerPolicy":
|
14178
|
+
suggest = "cpu_manager_policy"
|
14197
14179
|
elif key == "insecureKubeletReadonlyPortEnabled":
|
14198
14180
|
suggest = "insecure_kubelet_readonly_port_enabled"
|
14199
14181
|
elif key == "podPidsLimit":
|
@@ -14211,36 +14193,29 @@ class NodePoolNodeConfigKubeletConfig(dict):
|
|
14211
14193
|
return super().get(key, default)
|
14212
14194
|
|
14213
14195
|
def __init__(__self__, *,
|
14214
|
-
cpu_manager_policy: str,
|
14215
14196
|
cpu_cfs_quota: Optional[bool] = None,
|
14216
14197
|
cpu_cfs_quota_period: Optional[str] = None,
|
14198
|
+
cpu_manager_policy: Optional[str] = None,
|
14217
14199
|
insecure_kubelet_readonly_port_enabled: Optional[str] = None,
|
14218
14200
|
pod_pids_limit: Optional[int] = None):
|
14219
14201
|
"""
|
14220
|
-
:param str cpu_manager_policy: Control the CPU management policy on the node.
|
14221
14202
|
:param bool cpu_cfs_quota: Enable CPU CFS quota enforcement for containers that specify CPU limits.
|
14222
14203
|
:param str cpu_cfs_quota_period: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
14204
|
+
:param str cpu_manager_policy: Control the CPU management policy on the node.
|
14223
14205
|
:param 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`.
|
14224
14206
|
:param int pod_pids_limit: Controls the maximum number of processes allowed to run in a pod.
|
14225
14207
|
"""
|
14226
|
-
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
14227
14208
|
if cpu_cfs_quota is not None:
|
14228
14209
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
14229
14210
|
if cpu_cfs_quota_period is not None:
|
14230
14211
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
14212
|
+
if cpu_manager_policy is not None:
|
14213
|
+
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
14231
14214
|
if insecure_kubelet_readonly_port_enabled is not None:
|
14232
14215
|
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
14233
14216
|
if pod_pids_limit is not None:
|
14234
14217
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
14235
14218
|
|
14236
|
-
@property
|
14237
|
-
@pulumi.getter(name="cpuManagerPolicy")
|
14238
|
-
def cpu_manager_policy(self) -> str:
|
14239
|
-
"""
|
14240
|
-
Control the CPU management policy on the node.
|
14241
|
-
"""
|
14242
|
-
return pulumi.get(self, "cpu_manager_policy")
|
14243
|
-
|
14244
14219
|
@property
|
14245
14220
|
@pulumi.getter(name="cpuCfsQuota")
|
14246
14221
|
def cpu_cfs_quota(self) -> Optional[bool]:
|
@@ -14257,6 +14232,14 @@ class NodePoolNodeConfigKubeletConfig(dict):
|
|
14257
14232
|
"""
|
14258
14233
|
return pulumi.get(self, "cpu_cfs_quota_period")
|
14259
14234
|
|
14235
|
+
@property
|
14236
|
+
@pulumi.getter(name="cpuManagerPolicy")
|
14237
|
+
def cpu_manager_policy(self) -> Optional[str]:
|
14238
|
+
"""
|
14239
|
+
Control the CPU management policy on the node.
|
14240
|
+
"""
|
14241
|
+
return pulumi.get(self, "cpu_manager_policy")
|
14242
|
+
|
14260
14243
|
@property
|
14261
14244
|
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
14262
14245
|
def insecure_kubelet_readonly_port_enabled(self) -> Optional[str]:
|