pulumi-kubernetes-cert-manager 0.0.1a102__tar.gz

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.
Files changed (17) hide show
  1. pulumi_kubernetes_cert_manager-0.0.1a102/PKG-INFO +47 -0
  2. pulumi_kubernetes_cert_manager-0.0.1a102/README.md +31 -0
  3. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager/__init__.py +35 -0
  4. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager/_inputs.py +2517 -0
  5. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager/_utilities.py +327 -0
  6. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager/cert_manager.py +657 -0
  7. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager/outputs.py +121 -0
  8. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager/provider.py +76 -0
  9. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager/pulumi-plugin.json +5 -0
  10. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager/py.typed +0 -0
  11. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager.egg-info/PKG-INFO +47 -0
  12. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager.egg-info/SOURCES.txt +15 -0
  13. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager.egg-info/dependency_links.txt +1 -0
  14. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager.egg-info/requires.txt +7 -0
  15. pulumi_kubernetes_cert_manager-0.0.1a102/pulumi_kubernetes_cert_manager.egg-info/top_level.txt +1 -0
  16. pulumi_kubernetes_cert_manager-0.0.1a102/pyproject.toml +22 -0
  17. pulumi_kubernetes_cert_manager-0.0.1a102/setup.cfg +4 -0
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.2
2
+ Name: pulumi_kubernetes_cert_manager
3
+ Version: 0.0.1a102
4
+ Summary: Strongly-typed Cert Manager installation
5
+ License: Apache-2.0
6
+ Project-URL: Homepage, https://pulumi.io
7
+ Project-URL: Repository, https://github.com/pulumi/pulumi-kubernetes-cert-manager
8
+ Keywords: pulumi,kubernetes,cert-manager,kind/component,category/infrastructure
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: parver>=0.2.1
12
+ Requires-Dist: pulumi<4.0.0,>=3.142.0
13
+ Requires-Dist: pulumi-kubernetes<5.0.0,>=4.0.0
14
+ Requires-Dist: semver>=2.8.1
15
+ Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
16
+
17
+ # Pulumi Cert Manager Component
18
+
19
+ This repo contains the Pulumi Cert Manager component for Kubernetes. This add-on automates the
20
+ management and issuance of TLS certificates from various issuing sources. It ensures certificates
21
+ are valid and up to date periodically, and attempts to renew certificates at an appropriate time
22
+ before expiry.
23
+
24
+ This component wraps [the Jetstack Cert Manager Helm Chart](https://github.com/jetstack/cert-manager),
25
+ and offers a Pulumi-friendly and strongly-typed way to manage Cert Manager installations.
26
+
27
+ For examples of usage, see [the official documentation](https://cert-manager.io/docs/),
28
+ or refer to [the examples](/examples) in this repo.
29
+
30
+ ## To Use
31
+
32
+ To use this component, first install the Pulumi Package:
33
+
34
+ Afterwards, import the library and instantiate it within your Pulumi program:
35
+
36
+ ## Configuration
37
+
38
+ This component supports all of the configuration options of the [official Helm chart](
39
+ https://github.com/jetstack/cert-manager/tree/master/deploy/charts/cert-manager), except that these
40
+ are strongly typed so you will get IDE support and static error checking.
41
+
42
+ The Helm deployment uses reasonable defaults, including the chart name and repo URL, however,
43
+ if you need to override them, you may do so using the `helmOptions` parameter. Refer to
44
+ [the API docs for the `kubernetes:helm/v3:Release` Pulumi type](
45
+ https://www.pulumi.com/docs/reference/pkg/kubernetes/helm/v3/release/#inputs) for a full set of choices.
46
+
47
+ For complete details, refer to the Pulumi Package details within the Pulumi Registry.
@@ -0,0 +1,31 @@
1
+ # Pulumi Cert Manager Component
2
+
3
+ This repo contains the Pulumi Cert Manager component for Kubernetes. This add-on automates the
4
+ management and issuance of TLS certificates from various issuing sources. It ensures certificates
5
+ are valid and up to date periodically, and attempts to renew certificates at an appropriate time
6
+ before expiry.
7
+
8
+ This component wraps [the Jetstack Cert Manager Helm Chart](https://github.com/jetstack/cert-manager),
9
+ and offers a Pulumi-friendly and strongly-typed way to manage Cert Manager installations.
10
+
11
+ For examples of usage, see [the official documentation](https://cert-manager.io/docs/),
12
+ or refer to [the examples](/examples) in this repo.
13
+
14
+ ## To Use
15
+
16
+ To use this component, first install the Pulumi Package:
17
+
18
+ Afterwards, import the library and instantiate it within your Pulumi program:
19
+
20
+ ## Configuration
21
+
22
+ This component supports all of the configuration options of the [official Helm chart](
23
+ https://github.com/jetstack/cert-manager/tree/master/deploy/charts/cert-manager), except that these
24
+ are strongly typed so you will get IDE support and static error checking.
25
+
26
+ The Helm deployment uses reasonable defaults, including the chart name and repo URL, however,
27
+ if you need to override them, you may do so using the `helmOptions` parameter. Refer to
28
+ [the API docs for the `kubernetes:helm/v3:Release` Pulumi type](
29
+ https://www.pulumi.com/docs/reference/pkg/kubernetes/helm/v3/release/#inputs) for a full set of choices.
30
+
31
+ For complete details, refer to the Pulumi Package details within the Pulumi Registry.
@@ -0,0 +1,35 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from . import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .cert_manager import *
9
+ from .provider import *
10
+ from ._inputs import *
11
+ from . import outputs
12
+ _utilities.register(
13
+ resource_modules="""
14
+ [
15
+ {
16
+ "pkg": "kubernetes-cert-manager",
17
+ "mod": "index",
18
+ "fqn": "pulumi_kubernetes_cert_manager",
19
+ "classes": {
20
+ "kubernetes-cert-manager:index:CertManager": "CertManager"
21
+ }
22
+ }
23
+ ]
24
+ """,
25
+ resource_packages="""
26
+ [
27
+ {
28
+ "pkg": "kubernetes-cert-manager",
29
+ "token": "pulumi:providers:kubernetes-cert-manager",
30
+ "fqn": "pulumi_kubernetes_cert_manager",
31
+ "class": "Provider"
32
+ }
33
+ ]
34
+ """
35
+ )