pulumi-linode 5.1.0a1752772340__py3-none-any.whl → 5.2.0a1752818961__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.
Potentially problematic release.
This version of pulumi-linode might be problematic. Click here for more details.
- pulumi_linode/_inputs.py +79 -1
- pulumi_linode/get_lke_cluster.py +1 -1
- pulumi_linode/outputs.py +51 -1
- pulumi_linode/pulumi-plugin.json +1 -1
- {pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.2.0a1752818961.dist-info}/METADATA +1 -1
- {pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.2.0a1752818961.dist-info}/RECORD +8 -8
- {pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.2.0a1752818961.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.2.0a1752818961.dist-info}/top_level.txt +0 -0
pulumi_linode/_inputs.py
CHANGED
|
@@ -4225,6 +4225,10 @@ if not MYPY:
|
|
|
4225
4225
|
"""
|
|
4226
4226
|
The ID of the node.
|
|
4227
4227
|
"""
|
|
4228
|
+
k8s_version: NotRequired[pulumi.Input[builtins.str]]
|
|
4229
|
+
"""
|
|
4230
|
+
The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
4231
|
+
"""
|
|
4228
4232
|
labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]
|
|
4229
4233
|
"""
|
|
4230
4234
|
A map of key/value pairs to apply to all nodes in the pool. Labels are used to identify and organize Kubernetes resources within your cluster.
|
|
@@ -4241,6 +4245,10 @@ if not MYPY:
|
|
|
4241
4245
|
"""
|
|
4242
4246
|
Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. See [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
|
|
4243
4247
|
"""
|
|
4248
|
+
update_strategy: NotRequired[pulumi.Input[builtins.str]]
|
|
4249
|
+
"""
|
|
4250
|
+
The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
4251
|
+
"""
|
|
4244
4252
|
elif False:
|
|
4245
4253
|
LkeClusterPoolArgsDict: TypeAlias = Mapping[str, Any]
|
|
4246
4254
|
|
|
@@ -4252,20 +4260,24 @@ class LkeClusterPoolArgs:
|
|
|
4252
4260
|
count: Optional[pulumi.Input[builtins.int]] = None,
|
|
4253
4261
|
disk_encryption: Optional[pulumi.Input[builtins.str]] = None,
|
|
4254
4262
|
id: Optional[pulumi.Input[builtins.int]] = None,
|
|
4263
|
+
k8s_version: Optional[pulumi.Input[builtins.str]] = None,
|
|
4255
4264
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
|
4256
4265
|
nodes: Optional[pulumi.Input[Sequence[pulumi.Input['LkeClusterPoolNodeArgs']]]] = None,
|
|
4257
4266
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
4258
|
-
taints: Optional[pulumi.Input[Sequence[pulumi.Input['LkeClusterPoolTaintArgs']]]] = None
|
|
4267
|
+
taints: Optional[pulumi.Input[Sequence[pulumi.Input['LkeClusterPoolTaintArgs']]]] = None,
|
|
4268
|
+
update_strategy: Optional[pulumi.Input[builtins.str]] = None):
|
|
4259
4269
|
"""
|
|
4260
4270
|
:param pulumi.Input[builtins.str] type: A Linode Type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
|
|
4261
4271
|
:param pulumi.Input['LkeClusterPoolAutoscalerArgs'] autoscaler: When specified, the number of nodes autoscales within the defined minimum and maximum values.
|
|
4262
4272
|
:param pulumi.Input[builtins.int] count: The number of nodes in the Node Pool. If undefined with an autoscaler the initial node count will equal the autoscaler minimum.
|
|
4263
4273
|
:param pulumi.Input[builtins.str] disk_encryption: The disk encryption policy for nodes in this pool.
|
|
4264
4274
|
:param pulumi.Input[builtins.int] id: The ID of the node.
|
|
4275
|
+
:param pulumi.Input[builtins.str] k8s_version: The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
4265
4276
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: A map of key/value pairs to apply to all nodes in the pool. Labels are used to identify and organize Kubernetes resources within your cluster.
|
|
4266
4277
|
:param pulumi.Input[Sequence[pulumi.Input['LkeClusterPoolNodeArgs']]] nodes: The nodes in the node pool.
|
|
4267
4278
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: A set of tags applied to this node pool. Tags can be used to flag node pools as externally managed. See Externally Managed Node Pools for more details.
|
|
4268
4279
|
:param pulumi.Input[Sequence[pulumi.Input['LkeClusterPoolTaintArgs']]] taints: Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. See [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
|
|
4280
|
+
:param pulumi.Input[builtins.str] update_strategy: The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
4269
4281
|
"""
|
|
4270
4282
|
pulumi.set(__self__, "type", type)
|
|
4271
4283
|
if autoscaler is not None:
|
|
@@ -4276,6 +4288,8 @@ class LkeClusterPoolArgs:
|
|
|
4276
4288
|
pulumi.set(__self__, "disk_encryption", disk_encryption)
|
|
4277
4289
|
if id is not None:
|
|
4278
4290
|
pulumi.set(__self__, "id", id)
|
|
4291
|
+
if k8s_version is not None:
|
|
4292
|
+
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
4279
4293
|
if labels is not None:
|
|
4280
4294
|
pulumi.set(__self__, "labels", labels)
|
|
4281
4295
|
if nodes is not None:
|
|
@@ -4284,6 +4298,8 @@ class LkeClusterPoolArgs:
|
|
|
4284
4298
|
pulumi.set(__self__, "tags", tags)
|
|
4285
4299
|
if taints is not None:
|
|
4286
4300
|
pulumi.set(__self__, "taints", taints)
|
|
4301
|
+
if update_strategy is not None:
|
|
4302
|
+
pulumi.set(__self__, "update_strategy", update_strategy)
|
|
4287
4303
|
|
|
4288
4304
|
@property
|
|
4289
4305
|
@pulumi.getter
|
|
@@ -4345,6 +4361,18 @@ class LkeClusterPoolArgs:
|
|
|
4345
4361
|
def id(self, value: Optional[pulumi.Input[builtins.int]]):
|
|
4346
4362
|
pulumi.set(self, "id", value)
|
|
4347
4363
|
|
|
4364
|
+
@property
|
|
4365
|
+
@pulumi.getter(name="k8sVersion")
|
|
4366
|
+
def k8s_version(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
4367
|
+
"""
|
|
4368
|
+
The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
4369
|
+
"""
|
|
4370
|
+
return pulumi.get(self, "k8s_version")
|
|
4371
|
+
|
|
4372
|
+
@k8s_version.setter
|
|
4373
|
+
def k8s_version(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
4374
|
+
pulumi.set(self, "k8s_version", value)
|
|
4375
|
+
|
|
4348
4376
|
@property
|
|
4349
4377
|
@pulumi.getter
|
|
4350
4378
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
|
@@ -4393,6 +4421,18 @@ class LkeClusterPoolArgs:
|
|
|
4393
4421
|
def taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LkeClusterPoolTaintArgs']]]]):
|
|
4394
4422
|
pulumi.set(self, "taints", value)
|
|
4395
4423
|
|
|
4424
|
+
@property
|
|
4425
|
+
@pulumi.getter(name="updateStrategy")
|
|
4426
|
+
def update_strategy(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
4427
|
+
"""
|
|
4428
|
+
The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
4429
|
+
"""
|
|
4430
|
+
return pulumi.get(self, "update_strategy")
|
|
4431
|
+
|
|
4432
|
+
@update_strategy.setter
|
|
4433
|
+
def update_strategy(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
4434
|
+
pulumi.set(self, "update_strategy", value)
|
|
4435
|
+
|
|
4396
4436
|
|
|
4397
4437
|
if not MYPY:
|
|
4398
4438
|
class LkeClusterPoolAutoscalerArgsDict(TypedDict):
|
|
@@ -11429,6 +11469,10 @@ if not MYPY:
|
|
|
11429
11469
|
"""
|
|
11430
11470
|
The LKE Cluster's ID.
|
|
11431
11471
|
"""
|
|
11472
|
+
k8s_version: builtins.str
|
|
11473
|
+
"""
|
|
11474
|
+
The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
11475
|
+
"""
|
|
11432
11476
|
labels: Mapping[str, builtins.str]
|
|
11433
11477
|
"""
|
|
11434
11478
|
Key-value pairs added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects.
|
|
@@ -11445,6 +11489,10 @@ if not MYPY:
|
|
|
11445
11489
|
"""
|
|
11446
11490
|
The linode type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
|
|
11447
11491
|
"""
|
|
11492
|
+
update_strategy: builtins.str
|
|
11493
|
+
"""
|
|
11494
|
+
The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
11495
|
+
"""
|
|
11448
11496
|
autoscalers: NotRequired[Sequence['GetLkeClusterPoolAutoscalerArgsDict']]
|
|
11449
11497
|
"""
|
|
11450
11498
|
The configuration options for the autoscaler. This field only contains an autoscaler configuration if autoscaling is enabled on this cluster.
|
|
@@ -11466,10 +11514,12 @@ class GetLkeClusterPoolArgs:
|
|
|
11466
11514
|
count: builtins.int,
|
|
11467
11515
|
disk_encryption: builtins.str,
|
|
11468
11516
|
id: builtins.int,
|
|
11517
|
+
k8s_version: builtins.str,
|
|
11469
11518
|
labels: Mapping[str, builtins.str],
|
|
11470
11519
|
tags: Sequence[builtins.str],
|
|
11471
11520
|
taints: Sequence['GetLkeClusterPoolTaintArgs'],
|
|
11472
11521
|
type: builtins.str,
|
|
11522
|
+
update_strategy: builtins.str,
|
|
11473
11523
|
autoscalers: Optional[Sequence['GetLkeClusterPoolAutoscalerArgs']] = None,
|
|
11474
11524
|
disks: Optional[Sequence['GetLkeClusterPoolDiskArgs']] = None,
|
|
11475
11525
|
nodes: Optional[Sequence['GetLkeClusterPoolNodeArgs']] = None):
|
|
@@ -11477,10 +11527,12 @@ class GetLkeClusterPoolArgs:
|
|
|
11477
11527
|
:param builtins.int count: The number of nodes in the Node Pool.
|
|
11478
11528
|
:param builtins.str disk_encryption: The disk encryption policy for nodes in this pool.
|
|
11479
11529
|
:param builtins.int id: The LKE Cluster's ID.
|
|
11530
|
+
:param builtins.str k8s_version: The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
11480
11531
|
:param Mapping[str, builtins.str] labels: Key-value pairs added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects.
|
|
11481
11532
|
:param Sequence[builtins.str] tags: An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
11482
11533
|
:param Sequence['GetLkeClusterPoolTaintArgs'] taints: Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods.
|
|
11483
11534
|
:param builtins.str type: The linode type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
|
|
11535
|
+
:param builtins.str update_strategy: The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
11484
11536
|
:param Sequence['GetLkeClusterPoolAutoscalerArgs'] autoscalers: The configuration options for the autoscaler. This field only contains an autoscaler configuration if autoscaling is enabled on this cluster.
|
|
11485
11537
|
:param Sequence['GetLkeClusterPoolDiskArgs'] disks: This Node Pool’s custom disk layout.
|
|
11486
11538
|
:param Sequence['GetLkeClusterPoolNodeArgs'] nodes: The nodes in the Node Pool.
|
|
@@ -11488,10 +11540,12 @@ class GetLkeClusterPoolArgs:
|
|
|
11488
11540
|
pulumi.set(__self__, "count", count)
|
|
11489
11541
|
pulumi.set(__self__, "disk_encryption", disk_encryption)
|
|
11490
11542
|
pulumi.set(__self__, "id", id)
|
|
11543
|
+
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
11491
11544
|
pulumi.set(__self__, "labels", labels)
|
|
11492
11545
|
pulumi.set(__self__, "tags", tags)
|
|
11493
11546
|
pulumi.set(__self__, "taints", taints)
|
|
11494
11547
|
pulumi.set(__self__, "type", type)
|
|
11548
|
+
pulumi.set(__self__, "update_strategy", update_strategy)
|
|
11495
11549
|
if autoscalers is not None:
|
|
11496
11550
|
pulumi.set(__self__, "autoscalers", autoscalers)
|
|
11497
11551
|
if disks is not None:
|
|
@@ -11535,6 +11589,18 @@ class GetLkeClusterPoolArgs:
|
|
|
11535
11589
|
def id(self, value: builtins.int):
|
|
11536
11590
|
pulumi.set(self, "id", value)
|
|
11537
11591
|
|
|
11592
|
+
@property
|
|
11593
|
+
@pulumi.getter(name="k8sVersion")
|
|
11594
|
+
def k8s_version(self) -> builtins.str:
|
|
11595
|
+
"""
|
|
11596
|
+
The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
11597
|
+
"""
|
|
11598
|
+
return pulumi.get(self, "k8s_version")
|
|
11599
|
+
|
|
11600
|
+
@k8s_version.setter
|
|
11601
|
+
def k8s_version(self, value: builtins.str):
|
|
11602
|
+
pulumi.set(self, "k8s_version", value)
|
|
11603
|
+
|
|
11538
11604
|
@property
|
|
11539
11605
|
@pulumi.getter
|
|
11540
11606
|
def labels(self) -> Mapping[str, builtins.str]:
|
|
@@ -11583,6 +11649,18 @@ class GetLkeClusterPoolArgs:
|
|
|
11583
11649
|
def type(self, value: builtins.str):
|
|
11584
11650
|
pulumi.set(self, "type", value)
|
|
11585
11651
|
|
|
11652
|
+
@property
|
|
11653
|
+
@pulumi.getter(name="updateStrategy")
|
|
11654
|
+
def update_strategy(self) -> builtins.str:
|
|
11655
|
+
"""
|
|
11656
|
+
The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
11657
|
+
"""
|
|
11658
|
+
return pulumi.get(self, "update_strategy")
|
|
11659
|
+
|
|
11660
|
+
@update_strategy.setter
|
|
11661
|
+
def update_strategy(self, value: builtins.str):
|
|
11662
|
+
pulumi.set(self, "update_strategy", value)
|
|
11663
|
+
|
|
11586
11664
|
@property
|
|
11587
11665
|
@pulumi.getter
|
|
11588
11666
|
def autoscalers(self) -> Optional[Sequence['GetLkeClusterPoolAutoscalerArgs']]:
|
pulumi_linode/get_lke_cluster.py
CHANGED
|
@@ -128,7 +128,7 @@ class GetLkeClusterResult:
|
|
|
128
128
|
@pulumi.getter(name="k8sVersion")
|
|
129
129
|
def k8s_version(self) -> builtins.str:
|
|
130
130
|
"""
|
|
131
|
-
The
|
|
131
|
+
The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
132
132
|
"""
|
|
133
133
|
return pulumi.get(self, "k8s_version")
|
|
134
134
|
|
pulumi_linode/outputs.py
CHANGED
|
@@ -3125,6 +3125,10 @@ class LkeClusterPool(dict):
|
|
|
3125
3125
|
suggest = None
|
|
3126
3126
|
if key == "diskEncryption":
|
|
3127
3127
|
suggest = "disk_encryption"
|
|
3128
|
+
elif key == "k8sVersion":
|
|
3129
|
+
suggest = "k8s_version"
|
|
3130
|
+
elif key == "updateStrategy":
|
|
3131
|
+
suggest = "update_strategy"
|
|
3128
3132
|
|
|
3129
3133
|
if suggest:
|
|
3130
3134
|
pulumi.log.warn(f"Key '{key}' not found in LkeClusterPool. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -3143,20 +3147,24 @@ class LkeClusterPool(dict):
|
|
|
3143
3147
|
count: Optional[builtins.int] = None,
|
|
3144
3148
|
disk_encryption: Optional[builtins.str] = None,
|
|
3145
3149
|
id: Optional[builtins.int] = None,
|
|
3150
|
+
k8s_version: Optional[builtins.str] = None,
|
|
3146
3151
|
labels: Optional[Mapping[str, builtins.str]] = None,
|
|
3147
3152
|
nodes: Optional[Sequence['outputs.LkeClusterPoolNode']] = None,
|
|
3148
3153
|
tags: Optional[Sequence[builtins.str]] = None,
|
|
3149
|
-
taints: Optional[Sequence['outputs.LkeClusterPoolTaint']] = None
|
|
3154
|
+
taints: Optional[Sequence['outputs.LkeClusterPoolTaint']] = None,
|
|
3155
|
+
update_strategy: Optional[builtins.str] = None):
|
|
3150
3156
|
"""
|
|
3151
3157
|
:param builtins.str type: A Linode Type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
|
|
3152
3158
|
:param 'LkeClusterPoolAutoscalerArgs' autoscaler: When specified, the number of nodes autoscales within the defined minimum and maximum values.
|
|
3153
3159
|
:param builtins.int count: The number of nodes in the Node Pool. If undefined with an autoscaler the initial node count will equal the autoscaler minimum.
|
|
3154
3160
|
:param builtins.str disk_encryption: The disk encryption policy for nodes in this pool.
|
|
3155
3161
|
:param builtins.int id: The ID of the node.
|
|
3162
|
+
:param builtins.str k8s_version: The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
3156
3163
|
:param Mapping[str, builtins.str] labels: A map of key/value pairs to apply to all nodes in the pool. Labels are used to identify and organize Kubernetes resources within your cluster.
|
|
3157
3164
|
:param Sequence['LkeClusterPoolNodeArgs'] nodes: The nodes in the node pool.
|
|
3158
3165
|
:param Sequence[builtins.str] tags: A set of tags applied to this node pool. Tags can be used to flag node pools as externally managed. See Externally Managed Node Pools for more details.
|
|
3159
3166
|
:param Sequence['LkeClusterPoolTaintArgs'] taints: Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. See [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
|
|
3167
|
+
:param builtins.str update_strategy: The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
3160
3168
|
"""
|
|
3161
3169
|
pulumi.set(__self__, "type", type)
|
|
3162
3170
|
if autoscaler is not None:
|
|
@@ -3167,6 +3175,8 @@ class LkeClusterPool(dict):
|
|
|
3167
3175
|
pulumi.set(__self__, "disk_encryption", disk_encryption)
|
|
3168
3176
|
if id is not None:
|
|
3169
3177
|
pulumi.set(__self__, "id", id)
|
|
3178
|
+
if k8s_version is not None:
|
|
3179
|
+
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
3170
3180
|
if labels is not None:
|
|
3171
3181
|
pulumi.set(__self__, "labels", labels)
|
|
3172
3182
|
if nodes is not None:
|
|
@@ -3175,6 +3185,8 @@ class LkeClusterPool(dict):
|
|
|
3175
3185
|
pulumi.set(__self__, "tags", tags)
|
|
3176
3186
|
if taints is not None:
|
|
3177
3187
|
pulumi.set(__self__, "taints", taints)
|
|
3188
|
+
if update_strategy is not None:
|
|
3189
|
+
pulumi.set(__self__, "update_strategy", update_strategy)
|
|
3178
3190
|
|
|
3179
3191
|
@property
|
|
3180
3192
|
@pulumi.getter
|
|
@@ -3216,6 +3228,14 @@ class LkeClusterPool(dict):
|
|
|
3216
3228
|
"""
|
|
3217
3229
|
return pulumi.get(self, "id")
|
|
3218
3230
|
|
|
3231
|
+
@property
|
|
3232
|
+
@pulumi.getter(name="k8sVersion")
|
|
3233
|
+
def k8s_version(self) -> Optional[builtins.str]:
|
|
3234
|
+
"""
|
|
3235
|
+
The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
3236
|
+
"""
|
|
3237
|
+
return pulumi.get(self, "k8s_version")
|
|
3238
|
+
|
|
3219
3239
|
@property
|
|
3220
3240
|
@pulumi.getter
|
|
3221
3241
|
def labels(self) -> Optional[Mapping[str, builtins.str]]:
|
|
@@ -3248,6 +3268,14 @@ class LkeClusterPool(dict):
|
|
|
3248
3268
|
"""
|
|
3249
3269
|
return pulumi.get(self, "taints")
|
|
3250
3270
|
|
|
3271
|
+
@property
|
|
3272
|
+
@pulumi.getter(name="updateStrategy")
|
|
3273
|
+
def update_strategy(self) -> Optional[builtins.str]:
|
|
3274
|
+
"""
|
|
3275
|
+
The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
3276
|
+
"""
|
|
3277
|
+
return pulumi.get(self, "update_strategy")
|
|
3278
|
+
|
|
3251
3279
|
|
|
3252
3280
|
@pulumi.output_type
|
|
3253
3281
|
class LkeClusterPoolAutoscaler(dict):
|
|
@@ -12936,10 +12964,12 @@ class GetLkeClusterPoolResult(dict):
|
|
|
12936
12964
|
count: builtins.int,
|
|
12937
12965
|
disk_encryption: builtins.str,
|
|
12938
12966
|
id: builtins.int,
|
|
12967
|
+
k8s_version: builtins.str,
|
|
12939
12968
|
labels: Mapping[str, builtins.str],
|
|
12940
12969
|
tags: Sequence[builtins.str],
|
|
12941
12970
|
taints: Sequence['outputs.GetLkeClusterPoolTaintResult'],
|
|
12942
12971
|
type: builtins.str,
|
|
12972
|
+
update_strategy: builtins.str,
|
|
12943
12973
|
autoscalers: Optional[Sequence['outputs.GetLkeClusterPoolAutoscalerResult']] = None,
|
|
12944
12974
|
disks: Optional[Sequence['outputs.GetLkeClusterPoolDiskResult']] = None,
|
|
12945
12975
|
nodes: Optional[Sequence['outputs.GetLkeClusterPoolNodeResult']] = None):
|
|
@@ -12947,10 +12977,12 @@ class GetLkeClusterPoolResult(dict):
|
|
|
12947
12977
|
:param builtins.int count: The number of nodes in the Node Pool.
|
|
12948
12978
|
:param builtins.str disk_encryption: The disk encryption policy for nodes in this pool.
|
|
12949
12979
|
:param builtins.int id: The LKE Cluster's ID.
|
|
12980
|
+
:param builtins.str k8s_version: The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
12950
12981
|
:param Mapping[str, builtins.str] labels: Key-value pairs added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects.
|
|
12951
12982
|
:param Sequence[builtins.str] tags: An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
12952
12983
|
:param Sequence['GetLkeClusterPoolTaintArgs'] taints: Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods.
|
|
12953
12984
|
:param builtins.str type: The linode type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
|
|
12985
|
+
:param builtins.str update_strategy: The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
12954
12986
|
:param Sequence['GetLkeClusterPoolAutoscalerArgs'] autoscalers: The configuration options for the autoscaler. This field only contains an autoscaler configuration if autoscaling is enabled on this cluster.
|
|
12955
12987
|
:param Sequence['GetLkeClusterPoolDiskArgs'] disks: This Node Pool’s custom disk layout.
|
|
12956
12988
|
:param Sequence['GetLkeClusterPoolNodeArgs'] nodes: The nodes in the Node Pool.
|
|
@@ -12958,10 +12990,12 @@ class GetLkeClusterPoolResult(dict):
|
|
|
12958
12990
|
pulumi.set(__self__, "count", count)
|
|
12959
12991
|
pulumi.set(__self__, "disk_encryption", disk_encryption)
|
|
12960
12992
|
pulumi.set(__self__, "id", id)
|
|
12993
|
+
pulumi.set(__self__, "k8s_version", k8s_version)
|
|
12961
12994
|
pulumi.set(__self__, "labels", labels)
|
|
12962
12995
|
pulumi.set(__self__, "tags", tags)
|
|
12963
12996
|
pulumi.set(__self__, "taints", taints)
|
|
12964
12997
|
pulumi.set(__self__, "type", type)
|
|
12998
|
+
pulumi.set(__self__, "update_strategy", update_strategy)
|
|
12965
12999
|
if autoscalers is not None:
|
|
12966
13000
|
pulumi.set(__self__, "autoscalers", autoscalers)
|
|
12967
13001
|
if disks is not None:
|
|
@@ -12993,6 +13027,14 @@ class GetLkeClusterPoolResult(dict):
|
|
|
12993
13027
|
"""
|
|
12994
13028
|
return pulumi.get(self, "id")
|
|
12995
13029
|
|
|
13030
|
+
@property
|
|
13031
|
+
@pulumi.getter(name="k8sVersion")
|
|
13032
|
+
def k8s_version(self) -> builtins.str:
|
|
13033
|
+
"""
|
|
13034
|
+
The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
13035
|
+
"""
|
|
13036
|
+
return pulumi.get(self, "k8s_version")
|
|
13037
|
+
|
|
12996
13038
|
@property
|
|
12997
13039
|
@pulumi.getter
|
|
12998
13040
|
def labels(self) -> Mapping[str, builtins.str]:
|
|
@@ -13025,6 +13067,14 @@ class GetLkeClusterPoolResult(dict):
|
|
|
13025
13067
|
"""
|
|
13026
13068
|
return pulumi.get(self, "type")
|
|
13027
13069
|
|
|
13070
|
+
@property
|
|
13071
|
+
@pulumi.getter(name="updateStrategy")
|
|
13072
|
+
def update_strategy(self) -> builtins.str:
|
|
13073
|
+
"""
|
|
13074
|
+
The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
|
|
13075
|
+
"""
|
|
13076
|
+
return pulumi.get(self, "update_strategy")
|
|
13077
|
+
|
|
13028
13078
|
@property
|
|
13029
13079
|
@pulumi.getter
|
|
13030
13080
|
def autoscalers(self) -> Optional[Sequence['outputs.GetLkeClusterPoolAutoscalerResult']]:
|
pulumi_linode/pulumi-plugin.json
CHANGED
{pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.2.0a1752818961.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_linode/__init__.py,sha256=18ZRxTE9nrSaL-FO9bAt6kxilJrIb3DG-mtSVD9ELb0,10533
|
|
2
|
-
pulumi_linode/_inputs.py,sha256=
|
|
2
|
+
pulumi_linode/_inputs.py,sha256=fjUtC_e5RcS7uYSUdSpnFFpRtRXCF7haZZg3hqEhxaU,756090
|
|
3
3
|
pulumi_linode/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_linode/account_settings.py,sha256=EXDkwd4kCtL6G7zHS56ZIvYJBk-DPKQ8Ffy-a6Gx57Y,17579
|
|
5
5
|
pulumi_linode/database_access_controls.py,sha256=eptKyiP8P71wUZu-XzR1FHO_3fFdvtIVZM80-XkYdKI,13738
|
|
@@ -47,7 +47,7 @@ pulumi_linode/get_ipv6_ranges.py,sha256=Fv33UD5xuzz1olHBEtEquOTInGLYK_hGSKJSGYov
|
|
|
47
47
|
pulumi_linode/get_kernel.py,sha256=PSTLn2hTsRpDhN8O7qCgwZjLPyfPN5DiQjd_ip5wDbw,7230
|
|
48
48
|
pulumi_linode/get_kernels.py,sha256=4-B32TT-jur75rxoScDyZQkEwg8-boVcaEd7VwO4fPw,7266
|
|
49
49
|
pulumi_linode/get_linode_object_storage_bucket.py,sha256=bslGQmu1l-uayhUOfZlGVqjWDK-yJrO8BIm4X6U-xEY,9198
|
|
50
|
-
pulumi_linode/get_lke_cluster.py,sha256=
|
|
50
|
+
pulumi_linode/get_lke_cluster.py,sha256=ni3BjL487qv0i1H42XHeC1RnaRxqfQi0vYxAoo7IZiI,12463
|
|
51
51
|
pulumi_linode/get_lke_clusters.py,sha256=7hy5VzZY3ImDGQ2x8NOTIH5KWErET2WDQStIK1h58mQ,7436
|
|
52
52
|
pulumi_linode/get_lke_types.py,sha256=kec1OU2acJTQ3YXZdBrcRPG6yK4tpt1M2TeRaRH6Y7A,6082
|
|
53
53
|
pulumi_linode/get_lke_version.py,sha256=E-OF9GSxSCy8quKTV-j_MJLIAbkBORjLZNQ597Ux_qM,5615
|
|
@@ -102,11 +102,11 @@ pulumi_linode/node_balancer_node.py,sha256=N8iYbrGpfxwGpkUrFgSkgyQF3sJSZ0otfgbJE
|
|
|
102
102
|
pulumi_linode/object_storage_bucket.py,sha256=1liKL1yPsegwM5R8zM5pWlhvbzdWzT6oyOq0684xl1A,47806
|
|
103
103
|
pulumi_linode/object_storage_key.py,sha256=tLjTGuT1vAWw-Ckh-NuD86YGW3wGXQpD32j7dIbw3hg,21712
|
|
104
104
|
pulumi_linode/object_storage_object.py,sha256=6nD9C6phGL5DfnyY0gYj-nA4M1mFsTjJPdOJuoOGA3A,64597
|
|
105
|
-
pulumi_linode/outputs.py,sha256=
|
|
105
|
+
pulumi_linode/outputs.py,sha256=VUy6pEhIMnC12SxskEWa6ATSHq6MfhOYGtViNqXDKkQ,701813
|
|
106
106
|
pulumi_linode/placement_group.py,sha256=uOiIqht1QrsY3S9SDKHx5GYJ_IgHpOWBm14zi1vhNVc,17685
|
|
107
107
|
pulumi_linode/placement_group_assignment.py,sha256=d2b_YieDnlGT-DtFLHZQVk3owFuyUdDelCseDQf1aXc,12998
|
|
108
108
|
pulumi_linode/provider.py,sha256=IJIKGvthDXxlMU-jdPExa8Lc_y233D67YQIv4cvVuic,30742
|
|
109
|
-
pulumi_linode/pulumi-plugin.json,sha256=
|
|
109
|
+
pulumi_linode/pulumi-plugin.json,sha256=GSndm30rtvbZqWU7pLFlJfAKiT3_qNnUXlYB8o1zHHE,82
|
|
110
110
|
pulumi_linode/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
111
|
pulumi_linode/rdns.py,sha256=7cNUSTAaqM7hJ53Szd-m5ERwnUdUhGgqI9E1t6xgXpA,16712
|
|
112
112
|
pulumi_linode/reserved_ip_assignment.py,sha256=z1K8jnjni00DecHwofHUa0s8s2qiML2LN2InQszoPXY,23175
|
|
@@ -120,7 +120,7 @@ pulumi_linode/vpc_subnet.py,sha256=fNGr_g5hSKQN2eNj4B_8cPfZFYWZ_gAMGYCHYphuAD8,1
|
|
|
120
120
|
pulumi_linode/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
|
121
121
|
pulumi_linode/config/__init__.pyi,sha256=rcnF1KxF_C0AeB2L1B6yxZTPC0U1fW0HccZZsfNXTjU,2586
|
|
122
122
|
pulumi_linode/config/vars.py,sha256=8lC4E6NJR2IbOsZ_-gBV-3VwOUAEkM_8FF1MNHSVcTY,4954
|
|
123
|
-
pulumi_linode-5.
|
|
124
|
-
pulumi_linode-5.
|
|
125
|
-
pulumi_linode-5.
|
|
126
|
-
pulumi_linode-5.
|
|
123
|
+
pulumi_linode-5.2.0a1752818961.dist-info/METADATA,sha256=lTCZg9QK6_7LrJLP1XQcvNW5BRmcz7v7o88fBHuJZyQ,2897
|
|
124
|
+
pulumi_linode-5.2.0a1752818961.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
125
|
+
pulumi_linode-5.2.0a1752818961.dist-info/top_level.txt,sha256=AWbmZiRcnH6wR1iM52uHc3e-Dy7bdm_0fyCSbLQVI84,14
|
|
126
|
+
pulumi_linode-5.2.0a1752818961.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_linode-5.1.0a1752772340.dist-info → pulumi_linode-5.2.0a1752818961.dist-info}/top_level.txt
RENAMED
|
File without changes
|