pulumi-kubernetes 4.18.4__py3-none-any.whl → 4.19.0a1726165047__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-kubernetes might be problematic. Click here for more details.
- pulumi_kubernetes/_utilities.py +1 -1
- pulumi_kubernetes/helm/v3/_inputs.py +3 -3
- pulumi_kubernetes/helm/v3/outputs.py +2 -2
- pulumi_kubernetes/helm/v4/Chart.py +0 -6
- pulumi_kubernetes/helm/v4/_inputs.py +3 -3
- pulumi_kubernetes/pulumi-plugin.json +1 -1
- {pulumi_kubernetes-4.18.4.dist-info → pulumi_kubernetes-4.19.0a1726165047.dist-info}/METADATA +6 -6
- {pulumi_kubernetes-4.18.4.dist-info → pulumi_kubernetes-4.19.0a1726165047.dist-info}/RECORD +10 -10
- {pulumi_kubernetes-4.18.4.dist-info → pulumi_kubernetes-4.19.0a1726165047.dist-info}/WHEEL +1 -1
- {pulumi_kubernetes-4.18.4.dist-info → pulumi_kubernetes-4.19.0a1726165047.dist-info}/top_level.txt +0 -0
pulumi_kubernetes/_utilities.py
CHANGED
|
@@ -264,7 +264,7 @@ def call_plain(
|
|
|
264
264
|
output = pulumi.runtime.call(tok, props, res, typ)
|
|
265
265
|
|
|
266
266
|
# Ingoring deps silently. They are typically non-empty, r.f() calls include r as a dependency.
|
|
267
|
-
result, known, secret, _ = _sync_await(asyncio.
|
|
267
|
+
result, known, secret, _ = _sync_await(asyncio.ensure_future(_await_output(output)))
|
|
268
268
|
|
|
269
269
|
problem = None
|
|
270
270
|
if not known:
|
|
@@ -44,7 +44,7 @@ if not MYPY:
|
|
|
44
44
|
"""
|
|
45
45
|
repo: NotRequired[pulumi.Input[str]]
|
|
46
46
|
"""
|
|
47
|
-
Repository where to locate the requested chart. If
|
|
47
|
+
Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
|
|
48
48
|
"""
|
|
49
49
|
username: NotRequired[pulumi.Input[str]]
|
|
50
50
|
"""
|
|
@@ -68,7 +68,7 @@ class RepositoryOptsArgs:
|
|
|
68
68
|
:param pulumi.Input[str] cert_file: The repository's cert file
|
|
69
69
|
:param pulumi.Input[str] key_file: The repository's cert key file
|
|
70
70
|
:param pulumi.Input[str] password: Password for HTTP basic authentication
|
|
71
|
-
:param pulumi.Input[str] repo: Repository where to locate the requested chart. If
|
|
71
|
+
:param pulumi.Input[str] repo: Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
|
|
72
72
|
:param pulumi.Input[str] username: Username for HTTP basic authentication
|
|
73
73
|
"""
|
|
74
74
|
if ca_file is not None:
|
|
@@ -136,7 +136,7 @@ class RepositoryOptsArgs:
|
|
|
136
136
|
@pulumi.getter
|
|
137
137
|
def repo(self) -> Optional[pulumi.Input[str]]:
|
|
138
138
|
"""
|
|
139
|
-
Repository where to locate the requested chart. If
|
|
139
|
+
Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
|
|
140
140
|
"""
|
|
141
141
|
return pulumi.get(self, "repo")
|
|
142
142
|
|
|
@@ -165,7 +165,7 @@ class RepositoryOpts(dict):
|
|
|
165
165
|
:param str cert_file: The repository's cert file
|
|
166
166
|
:param str key_file: The repository's cert key file
|
|
167
167
|
:param str password: Password for HTTP basic authentication
|
|
168
|
-
:param str repo: Repository where to locate the requested chart. If
|
|
168
|
+
:param str repo: Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
|
|
169
169
|
:param str username: Username for HTTP basic authentication
|
|
170
170
|
"""
|
|
171
171
|
if ca_file is not None:
|
|
@@ -217,7 +217,7 @@ class RepositoryOpts(dict):
|
|
|
217
217
|
@pulumi.getter
|
|
218
218
|
def repo(self) -> Optional[str]:
|
|
219
219
|
"""
|
|
220
|
-
Repository where to locate the requested chart. If
|
|
220
|
+
Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
|
|
221
221
|
"""
|
|
222
222
|
return pulumi.get(self, "repo")
|
|
223
223
|
|
|
@@ -286,9 +286,6 @@ class Chart(pulumi.ComponentResource):
|
|
|
286
286
|
version: Optional[pulumi.Input[str]] = None,
|
|
287
287
|
__props__=None):
|
|
288
288
|
"""
|
|
289
|
-
_Looking for the Release resource? Please use the [v3 package](/registry/packages/kubernetes/api-docs/helm/v3/release/)
|
|
290
|
-
for production use cases, and stay tuned for an updated Release resource, coming soon._
|
|
291
|
-
|
|
292
289
|
_See also: [New: Helm Chart v4 resource with new features and languages](/blog/kubernetes-chart-v4/)_
|
|
293
290
|
|
|
294
291
|
Chart is a component representing a collection of resources described by a Helm Chart.
|
|
@@ -478,9 +475,6 @@ class Chart(pulumi.ComponentResource):
|
|
|
478
475
|
args: ChartArgs,
|
|
479
476
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
480
477
|
"""
|
|
481
|
-
_Looking for the Release resource? Please use the [v3 package](/registry/packages/kubernetes/api-docs/helm/v3/release/)
|
|
482
|
-
for production use cases, and stay tuned for an updated Release resource, coming soon._
|
|
483
|
-
|
|
484
478
|
_See also: [New: Helm Chart v4 resource with new features and languages](/blog/kubernetes-chart-v4/)_
|
|
485
479
|
|
|
486
480
|
Chart is a component representing a collection of resources described by a Helm Chart.
|
|
@@ -101,7 +101,7 @@ if not MYPY:
|
|
|
101
101
|
"""
|
|
102
102
|
repo: NotRequired[pulumi.Input[str]]
|
|
103
103
|
"""
|
|
104
|
-
Repository where to locate the requested chart. If
|
|
104
|
+
Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
|
|
105
105
|
"""
|
|
106
106
|
username: NotRequired[pulumi.Input[str]]
|
|
107
107
|
"""
|
|
@@ -125,7 +125,7 @@ class RepositoryOptsArgs:
|
|
|
125
125
|
:param pulumi.Input[Union[pulumi.Asset, pulumi.Archive]] cert_file: The repository's cert file
|
|
126
126
|
:param pulumi.Input[Union[pulumi.Asset, pulumi.Archive]] key_file: The repository's cert key file
|
|
127
127
|
:param pulumi.Input[str] password: Password for HTTP basic authentication
|
|
128
|
-
:param pulumi.Input[str] repo: Repository where to locate the requested chart. If
|
|
128
|
+
:param pulumi.Input[str] repo: Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
|
|
129
129
|
:param pulumi.Input[str] username: Username for HTTP basic authentication
|
|
130
130
|
"""
|
|
131
131
|
if ca_file is not None:
|
|
@@ -193,7 +193,7 @@ class RepositoryOptsArgs:
|
|
|
193
193
|
@pulumi.getter
|
|
194
194
|
def repo(self) -> Optional[pulumi.Input[str]]:
|
|
195
195
|
"""
|
|
196
|
-
Repository where to locate the requested chart. If
|
|
196
|
+
Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
|
|
197
197
|
"""
|
|
198
198
|
return pulumi.get(self, "repo")
|
|
199
199
|
|
{pulumi_kubernetes-4.18.4.dist-info → pulumi_kubernetes-4.19.0a1726165047.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_kubernetes
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.19.0a1726165047
|
|
4
4
|
Summary: A Pulumi package for creating and managing Kubernetes resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.com
|
|
@@ -8,11 +8,11 @@ Project-URL: Repository, https://github.com/pulumi/pulumi-kubernetes
|
|
|
8
8
|
Keywords: pulumi,kubernetes,category/cloud,kind/native
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
13
|
-
Requires-Dist: requests<3.0,>=2.21
|
|
14
|
-
Requires-Dist: semver>=2.8.1
|
|
15
|
-
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
11
|
+
Requires-Dist: parver >=0.2.1
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.109.0
|
|
13
|
+
Requires-Dist: requests <3.0,>=2.21
|
|
14
|
+
Requires-Dist: semver >=2.8.1
|
|
15
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
16
16
|
|
|
17
17
|
[](https://travis-ci.com/pulumi/pulumi-kubernetes)
|
|
18
18
|
[](https://slack.pulumi.com)
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
pulumi_kubernetes/__init__.py,sha256=EMQ0ghZv1ij0CKPIlfdubfBuEocAwQqcrSO7CwIRses,46202
|
|
2
2
|
pulumi_kubernetes/_inputs.py,sha256=tEtSSFnBN33_kq4jRZblxlWKKOcYVl7fzIrLijcg2ew,8863
|
|
3
3
|
pulumi_kubernetes/_tables.py,sha256=3neJaK1ZuzFWWgLJKwl0jAR-Gymxn6CMeGwh1k4tcw4,40823
|
|
4
|
-
pulumi_kubernetes/_utilities.py,sha256=
|
|
4
|
+
pulumi_kubernetes/_utilities.py,sha256=WpjMxjS_nwp8B1Bh4EYpzGv6c1C3DWVL4ekrgReUNLA,10475
|
|
5
5
|
pulumi_kubernetes/outputs.py,sha256=YLfWOa1pqtMnI9hVe-nfOVDDjTDGeomctTClWqDX_Sw,1685
|
|
6
6
|
pulumi_kubernetes/provider.py,sha256=_R1fb8GIGXJnHnEvhcpGBXDMdvJywrWCNVOEBQs_QYA,30294
|
|
7
|
-
pulumi_kubernetes/pulumi-plugin.json,sha256=
|
|
7
|
+
pulumi_kubernetes/pulumi-plugin.json,sha256=_YlKlhEBGRjgiq3VoH3ZFR7hfKn3uwH4ujfawhML4WU,87
|
|
8
8
|
pulumi_kubernetes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
pulumi_kubernetes/admissionregistration/__init__.py,sha256=85XpZ49dreIz2jkQcun5WDfJfI5ao85E6njlB8A8y_k,785
|
|
10
10
|
pulumi_kubernetes/admissionregistration/v1/MutatingWebhookConfiguration.py,sha256=oCfW2vqC_yrazTudFFz1fnJDhuYsqV8p6HVuKZeE-Ec,12104
|
|
@@ -364,12 +364,12 @@ pulumi_kubernetes/flowcontrol/v1beta3/outputs.py,sha256=U7fvtA9dFrIBmRyt6xf17I4G
|
|
|
364
364
|
pulumi_kubernetes/helm/__init__.py,sha256=EbPhjk2cF8npPznWJKTx1U2YCnHyxst3CawQk6MppxE,497
|
|
365
365
|
pulumi_kubernetes/helm/v3/Release.py,sha256=rWoXMwOGdAjbINE8NJp8tpZjDhgXjavfw2rv6IKI_SE,61669
|
|
366
366
|
pulumi_kubernetes/helm/v3/__init__.py,sha256=OZvXgccpPzl_hsRWYo8qyYhsZ6FOsm5FDfuaVsE8GSM,327
|
|
367
|
-
pulumi_kubernetes/helm/v3/_inputs.py,sha256=
|
|
367
|
+
pulumi_kubernetes/helm/v3/_inputs.py,sha256=HOIir2M-vAQ9mTjr3Q-lUcrKcNowEdETb-EbIaAdm08,5196
|
|
368
368
|
pulumi_kubernetes/helm/v3/helm.py,sha256=jzuI3naCi_tLSTVtTMbgsdjdjBy_YukBtVIXv8X7kh4,28219
|
|
369
|
-
pulumi_kubernetes/helm/v3/outputs.py,sha256=
|
|
370
|
-
pulumi_kubernetes/helm/v4/Chart.py,sha256=
|
|
369
|
+
pulumi_kubernetes/helm/v3/outputs.py,sha256=pQ4GhMStEIm0uHsCCmdPcLDyo8IonD9ktaQc2zu6G_g,7361
|
|
370
|
+
pulumi_kubernetes/helm/v4/Chart.py,sha256=xfGXsXDOV4sl8NUcggQ9oxlyojPT1OZ3ghE0M4eTtP8,34699
|
|
371
371
|
pulumi_kubernetes/helm/v4/__init__.py,sha256=85KWAru_ONeUv70Qx1R1DAuhvJnHwL03OP8ERal20FI,283
|
|
372
|
-
pulumi_kubernetes/helm/v4/_inputs.py,sha256=
|
|
372
|
+
pulumi_kubernetes/helm/v4/_inputs.py,sha256=Tj2nSZkOhjOCN2w0oQ-Sz2hJLKMF5ORAHFb4fnRhAC8,7505
|
|
373
373
|
pulumi_kubernetes/kustomize/__init__.py,sha256=WdwYu9her4c8GYjm_rKxBe_8PVAK8fYvqKV9nGRBQgs,456
|
|
374
374
|
pulumi_kubernetes/kustomize/kustomize.py,sha256=a89dnJ0qkrpCmrYz_ARDKE6u10M5XoK1ZHoE-wB8itA,6828
|
|
375
375
|
pulumi_kubernetes/kustomize/v2/Directory.py,sha256=wNyvW-nAKwMHBn5SvvoXTI4sTcmqLOxULWq3YlsujC4,9500
|
|
@@ -645,7 +645,7 @@ pulumi_kubernetes/yaml/yaml.py,sha256=d5eqPtRNwBm6BmexW0Ux58SiJ7ornpWnVvoeDP6K5x
|
|
|
645
645
|
pulumi_kubernetes/yaml/v2/ConfigFile.py,sha256=dB_-cepmwo6mOVzY5T-GnoZ_mVlm1u0pveSRWnDTcVg,11100
|
|
646
646
|
pulumi_kubernetes/yaml/v2/ConfigGroup.py,sha256=GoDGxpAemfjEHcYiOexM1fxmKqu4uWBzTB1Fbqy4Ips,15702
|
|
647
647
|
pulumi_kubernetes/yaml/v2/__init__.py,sha256=5S6M8sncwfHm2sXPUBAjROBlGQWwFFedOQ8z1f5SB3U,292
|
|
648
|
-
pulumi_kubernetes-4.
|
|
649
|
-
pulumi_kubernetes-4.
|
|
650
|
-
pulumi_kubernetes-4.
|
|
651
|
-
pulumi_kubernetes-4.
|
|
648
|
+
pulumi_kubernetes-4.19.0a1726165047.dist-info/METADATA,sha256=_gUGfdlgTZCWshUADwHLgfciGGcj5Fv2L85HuqwDafE,9427
|
|
649
|
+
pulumi_kubernetes-4.19.0a1726165047.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
650
|
+
pulumi_kubernetes-4.19.0a1726165047.dist-info/top_level.txt,sha256=xoTPI88GpKE_G1dcKvsjaA1qV3yO4NCn2ZpXq4byqNc,18
|
|
651
|
+
pulumi_kubernetes-4.19.0a1726165047.dist-info/RECORD,,
|
{pulumi_kubernetes-4.18.4.dist-info → pulumi_kubernetes-4.19.0a1726165047.dist-info}/top_level.txt
RENAMED
|
File without changes
|