pulumi-kubernetes-cert-manager 0.2.0a1741891455__py3-none-any.whl → 0.2.0a1741917211__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_kubernetes_cert_manager/cert_manager.py +7 -7
- pulumi_kubernetes_cert_manager/pulumi-plugin.json +1 -1
- {pulumi_kubernetes_cert_manager-0.2.0a1741891455.dist-info → pulumi_kubernetes_cert_manager-0.2.0a1741917211.dist-info}/METADATA +1 -1
- {pulumi_kubernetes_cert_manager-0.2.0a1741891455.dist-info → pulumi_kubernetes_cert_manager-0.2.0a1741917211.dist-info}/RECORD +6 -6
- {pulumi_kubernetes_cert_manager-0.2.0a1741891455.dist-info → pulumi_kubernetes_cert_manager-0.2.0a1741917211.dist-info}/WHEEL +0 -0
- {pulumi_kubernetes_cert_manager-0.2.0a1741891455.dist-info → pulumi_kubernetes_cert_manager-0.2.0a1741917211.dist-info}/top_level.txt +0 -0
@@ -33,7 +33,7 @@ class CertManagerArgs:
|
|
33
33
|
extra_volumes: Optional[pulumi.Input[Sequence[pulumi.Input['pulumi_kubernetes.core.v1.VolumeArgs']]]] = None,
|
34
34
|
feature_gates: Optional[pulumi.Input[str]] = None,
|
35
35
|
global_: Optional[pulumi.Input['CertManagerGlobalArgs']] = None,
|
36
|
-
helm_options: Optional[
|
36
|
+
helm_options: Optional['ReleaseArgs'] = None,
|
37
37
|
http_proxy: Optional[pulumi.Input[str]] = None,
|
38
38
|
https_proxy: Optional[pulumi.Input[str]] = None,
|
39
39
|
image: Optional[pulumi.Input['CertManagerImageArgs']] = None,
|
@@ -63,7 +63,7 @@ class CertManagerArgs:
|
|
63
63
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] deployment_annotations: Optional additional annotations to add to the controller Deployment
|
64
64
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] extra_args: Optional additional arguments.
|
65
65
|
:param pulumi.Input[str] feature_gates: Comma separated list of feature gates that should be enabled on the controller pod.
|
66
|
-
:param
|
66
|
+
:param 'ReleaseArgs' helm_options: HelmOptions is an escape hatch that lets the end user control any aspect of the Helm deployment. This exposes the entirety of the underlying Helm Release component args.
|
67
67
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pod_annotations: Optional additional annotations to add to the controller Pods
|
68
68
|
:param pulumi.Input[str] pod_dns_policy: Optional DNS settings, useful if you have a public and private DNS zone for the same domain on Route 53. What follows is an example of ensuring cert-manager can access an ingress or DNS TXT records at all times. NOTE: This requires Kubernetes 1.10 or `CustomPodDNS` feature gate enabled for the cluster to work.
|
69
69
|
:param pulumi.Input['pulumi_kubernetes.core.v1.PodSecurityContextArgs'] security_context: Pod Security Context. ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
|
@@ -255,14 +255,14 @@ class CertManagerArgs:
|
|
255
255
|
|
256
256
|
@property
|
257
257
|
@pulumi.getter(name="helmOptions")
|
258
|
-
def helm_options(self) -> Optional[
|
258
|
+
def helm_options(self) -> Optional['ReleaseArgs']:
|
259
259
|
"""
|
260
260
|
HelmOptions is an escape hatch that lets the end user control any aspect of the Helm deployment. This exposes the entirety of the underlying Helm Release component args.
|
261
261
|
"""
|
262
262
|
return pulumi.get(self, "helm_options")
|
263
263
|
|
264
264
|
@helm_options.setter
|
265
|
-
def helm_options(self, value: Optional[
|
265
|
+
def helm_options(self, value: Optional['ReleaseArgs']):
|
266
266
|
pulumi.set(self, "helm_options", value)
|
267
267
|
|
268
268
|
@property
|
@@ -495,7 +495,7 @@ class CertManager(pulumi.ComponentResource):
|
|
495
495
|
extra_volumes: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['pulumi_kubernetes.core.v1.VolumeArgs']]]]] = None,
|
496
496
|
feature_gates: Optional[pulumi.Input[str]] = None,
|
497
497
|
global_: Optional[pulumi.Input[Union['CertManagerGlobalArgs', 'CertManagerGlobalArgsDict']]] = None,
|
498
|
-
helm_options: Optional[
|
498
|
+
helm_options: Optional[Union['ReleaseArgs', 'ReleaseArgsDict']] = None,
|
499
499
|
http_proxy: Optional[pulumi.Input[str]] = None,
|
500
500
|
https_proxy: Optional[pulumi.Input[str]] = None,
|
501
501
|
image: Optional[pulumi.Input[Union['CertManagerImageArgs', 'CertManagerImageArgsDict']]] = None,
|
@@ -529,7 +529,7 @@ class CertManager(pulumi.ComponentResource):
|
|
529
529
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] deployment_annotations: Optional additional annotations to add to the controller Deployment
|
530
530
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] extra_args: Optional additional arguments.
|
531
531
|
:param pulumi.Input[str] feature_gates: Comma separated list of feature gates that should be enabled on the controller pod.
|
532
|
-
:param
|
532
|
+
:param Union['ReleaseArgs', 'ReleaseArgsDict'] helm_options: HelmOptions is an escape hatch that lets the end user control any aspect of the Helm deployment. This exposes the entirety of the underlying Helm Release component args.
|
533
533
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pod_annotations: Optional additional annotations to add to the controller Pods
|
534
534
|
:param pulumi.Input[str] pod_dns_policy: Optional DNS settings, useful if you have a public and private DNS zone for the same domain on Route 53. What follows is an example of ensuring cert-manager can access an ingress or DNS TXT records at all times. NOTE: This requires Kubernetes 1.10 or `CustomPodDNS` feature gate enabled for the cluster to work.
|
535
535
|
:param pulumi.Input[pulumi.InputType['pulumi_kubernetes.core.v1.PodSecurityContextArgs']] security_context: Pod Security Context. ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
|
@@ -571,7 +571,7 @@ class CertManager(pulumi.ComponentResource):
|
|
571
571
|
extra_volumes: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['pulumi_kubernetes.core.v1.VolumeArgs']]]]] = None,
|
572
572
|
feature_gates: Optional[pulumi.Input[str]] = None,
|
573
573
|
global_: Optional[pulumi.Input[Union['CertManagerGlobalArgs', 'CertManagerGlobalArgsDict']]] = None,
|
574
|
-
helm_options: Optional[
|
574
|
+
helm_options: Optional[Union['ReleaseArgs', 'ReleaseArgsDict']] = None,
|
575
575
|
http_proxy: Optional[pulumi.Input[str]] = None,
|
576
576
|
https_proxy: Optional[pulumi.Input[str]] = None,
|
577
577
|
image: Optional[pulumi.Input[Union['CertManagerImageArgs', 'CertManagerImageArgsDict']]] = None,
|
@@ -1,12 +1,12 @@
|
|
1
1
|
pulumi_kubernetes_cert_manager/__init__.py,sha256=iWbK-zT-kQ_wCkzWhPzcl0VBIe58d3OLKJcNv2L8pUQ,784
|
2
2
|
pulumi_kubernetes_cert_manager/_inputs.py,sha256=IVtqyWalbhZPqkVbGHnyavbuue14SdzPdGCSqb2UcDo,113419
|
3
3
|
pulumi_kubernetes_cert_manager/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
4
|
-
pulumi_kubernetes_cert_manager/cert_manager.py,sha256=
|
4
|
+
pulumi_kubernetes_cert_manager/cert_manager.py,sha256=F90wMZ-sQPQFXQDE8mQB245Ihxlwq7e52owA-O5EjLw,37970
|
5
5
|
pulumi_kubernetes_cert_manager/outputs.py,sha256=r5MQVrc8y1x6cfQYkUtEcb3pJK2Cg4Tb1ziZ0QmbXRY,3559
|
6
6
|
pulumi_kubernetes_cert_manager/provider.py,sha256=uWRnQ8HC1Uqw8rvuDZXHyia-4C2uWaqGaGPVsMklOv4,2957
|
7
|
-
pulumi_kubernetes_cert_manager/pulumi-plugin.json,sha256=
|
7
|
+
pulumi_kubernetes_cert_manager/pulumi-plugin.json,sha256=lTUHQLYTf7-7sej4VeQTFwjopH2p6nJ8zmVAzxpwZcs,99
|
8
8
|
pulumi_kubernetes_cert_manager/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
pulumi_kubernetes_cert_manager-0.2.
|
10
|
-
pulumi_kubernetes_cert_manager-0.2.
|
11
|
-
pulumi_kubernetes_cert_manager-0.2.
|
12
|
-
pulumi_kubernetes_cert_manager-0.2.
|
9
|
+
pulumi_kubernetes_cert_manager-0.2.0a1741917211.dist-info/METADATA,sha256=KSbrZuFYg5uvEgCT4YLhE7WMIjjS7DOB2tKcPaKt6s8,2170
|
10
|
+
pulumi_kubernetes_cert_manager-0.2.0a1741917211.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
11
|
+
pulumi_kubernetes_cert_manager-0.2.0a1741917211.dist-info/top_level.txt,sha256=CRJ1c0Ei9-BbbfCWCD2gLhqo5gu6JKflVHGaAY7g93o,31
|
12
|
+
pulumi_kubernetes_cert_manager-0.2.0a1741917211.dist-info/RECORD,,
|
File without changes
|