pulumi-kubernetes-coredns 0.1.0a1736271445__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.
- pulumi_kubernetes_coredns-0.1.0a1736271445/PKG-INFO +45 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/README.md +29 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns/__init__.py +35 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns/_inputs.py +1942 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns/_utilities.py +327 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns/core_dns.py +687 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns/outputs.py +121 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns/provider.py +76 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns/pulumi-plugin.json +5 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns/py.typed +0 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns.egg-info/PKG-INFO +45 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns.egg-info/SOURCES.txt +15 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns.egg-info/dependency_links.txt +1 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns.egg-info/requires.txt +7 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pulumi_kubernetes_coredns.egg-info/top_level.txt +1 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/pyproject.toml +22 -0
- pulumi_kubernetes_coredns-0.1.0a1736271445/setup.cfg +4 -0
@@ -0,0 +1,45 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: pulumi_kubernetes_coredns
|
3
|
+
Version: 0.1.0a1736271445
|
4
|
+
Summary: Strongly-typed CoreDNS installation
|
5
|
+
License: Apache-2.0
|
6
|
+
Project-URL: Homepage, https://pulumi.io
|
7
|
+
Project-URL: Repository, https://github.com/pulumi/pulumi-kubernetes-coredns
|
8
|
+
Keywords: pulumi,kubernetes,coredns,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.0.0
|
13
|
+
Requires-Dist: pulumi-kubernetes<5.0.0,>=4.19.0
|
14
|
+
Requires-Dist: semver>=2.8.1
|
15
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
16
|
+
|
17
|
+
# Pulumi Kubernetes CoreDNS Component
|
18
|
+
|
19
|
+
This repo contains the Pulumi CoreDNS component for Kubernetes. CoreDNS is a fast and flexible
|
20
|
+
DNS server, providing DNS services to your cluster.
|
21
|
+
|
22
|
+
This component wraps [the official CoreDNS Helm Chart](https://github.com/coredns/helm),
|
23
|
+
and offers a Pulumi-friendly and strongly-typed way to manage CoreDNS installations.
|
24
|
+
|
25
|
+
For examples of usage, see [the official documentation](https://coredns.io/),
|
26
|
+
or refer to [the examples](/examples) in this repo.
|
27
|
+
|
28
|
+
## To Use
|
29
|
+
|
30
|
+
To use this component, first install the Pulumi Package:
|
31
|
+
|
32
|
+
Afterwards, import the library and instantiate it within your Pulumi program:
|
33
|
+
|
34
|
+
## Configuration
|
35
|
+
|
36
|
+
This component supports all of the configuration options of the [official Helm chart](
|
37
|
+
https://github.com/coredns/helm#configuration), except that these
|
38
|
+
are strongly typed so you will get IDE support and static error checking.
|
39
|
+
|
40
|
+
The Helm deployment uses reasonable defaults, including the chart name and repo URL, however,
|
41
|
+
if you need to override them, you may do so using the `helmOptions` parameter. Refer to
|
42
|
+
[the API docs for the `kubernetes:helm/v3:Release` Pulumi type](
|
43
|
+
https://www.pulumi.com/docs/reference/pkg/kubernetes/helm/v3/release/#inputs) for a full set of choices.
|
44
|
+
|
45
|
+
For complete details, refer to the Pulumi Package details within the Pulumi Registry.
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Pulumi Kubernetes CoreDNS Component
|
2
|
+
|
3
|
+
This repo contains the Pulumi CoreDNS component for Kubernetes. CoreDNS is a fast and flexible
|
4
|
+
DNS server, providing DNS services to your cluster.
|
5
|
+
|
6
|
+
This component wraps [the official CoreDNS Helm Chart](https://github.com/coredns/helm),
|
7
|
+
and offers a Pulumi-friendly and strongly-typed way to manage CoreDNS installations.
|
8
|
+
|
9
|
+
For examples of usage, see [the official documentation](https://coredns.io/),
|
10
|
+
or refer to [the examples](/examples) in this repo.
|
11
|
+
|
12
|
+
## To Use
|
13
|
+
|
14
|
+
To use this component, first install the Pulumi Package:
|
15
|
+
|
16
|
+
Afterwards, import the library and instantiate it within your Pulumi program:
|
17
|
+
|
18
|
+
## Configuration
|
19
|
+
|
20
|
+
This component supports all of the configuration options of the [official Helm chart](
|
21
|
+
https://github.com/coredns/helm#configuration), except that these
|
22
|
+
are strongly typed so you will get IDE support and static error checking.
|
23
|
+
|
24
|
+
The Helm deployment uses reasonable defaults, including the chart name and repo URL, however,
|
25
|
+
if you need to override them, you may do so using the `helmOptions` parameter. Refer to
|
26
|
+
[the API docs for the `kubernetes:helm/v3:Release` Pulumi type](
|
27
|
+
https://www.pulumi.com/docs/reference/pkg/kubernetes/helm/v3/release/#inputs) for a full set of choices.
|
28
|
+
|
29
|
+
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 .core_dns import *
|
9
|
+
from .provider import *
|
10
|
+
from ._inputs import *
|
11
|
+
from . import outputs
|
12
|
+
_utilities.register(
|
13
|
+
resource_modules="""
|
14
|
+
[
|
15
|
+
{
|
16
|
+
"pkg": "kubernetes-coredns",
|
17
|
+
"mod": "index",
|
18
|
+
"fqn": "pulumi_kubernetes_coredns",
|
19
|
+
"classes": {
|
20
|
+
"kubernetes-coredns:index:CoreDNS": "CoreDNS"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
]
|
24
|
+
""",
|
25
|
+
resource_packages="""
|
26
|
+
[
|
27
|
+
{
|
28
|
+
"pkg": "kubernetes-coredns",
|
29
|
+
"token": "pulumi:providers:kubernetes-coredns",
|
30
|
+
"fqn": "pulumi_kubernetes_coredns",
|
31
|
+
"class": "Provider"
|
32
|
+
}
|
33
|
+
]
|
34
|
+
"""
|
35
|
+
)
|