pulumi-eks 4.3.0a1768463252__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_eks/__init__.py +51 -0
- pulumi_eks/_enums.py +164 -0
- pulumi_eks/_inputs.py +3445 -0
- pulumi_eks/_utilities.py +331 -0
- pulumi_eks/addon.py +272 -0
- pulumi_eks/cluster.py +1879 -0
- pulumi_eks/cluster_creation_role_provider.py +118 -0
- pulumi_eks/managed_node_group.py +1240 -0
- pulumi_eks/node_group.py +1161 -0
- pulumi_eks/node_group_security_group.py +183 -0
- pulumi_eks/node_group_v2.py +1212 -0
- pulumi_eks/outputs.py +1400 -0
- pulumi_eks/provider.py +77 -0
- pulumi_eks/pulumi-plugin.json +5 -0
- pulumi_eks/py.typed +0 -0
- pulumi_eks/vpc_cni_addon.py +719 -0
- pulumi_eks-4.3.0a1768463252.dist-info/METADATA +94 -0
- pulumi_eks-4.3.0a1768463252.dist-info/RECORD +20 -0
- pulumi_eks-4.3.0a1768463252.dist-info/WHEEL +5 -0
- pulumi_eks-4.3.0a1768463252.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pulumi_eks
|
|
3
|
+
Version: 4.3.0a1768463252
|
|
4
|
+
Summary: Pulumi Amazon Web Services (AWS) EKS Components.
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://pulumi.com
|
|
7
|
+
Project-URL: Repository, https://github.com/pulumi/pulumi-eks
|
|
8
|
+
Keywords: pulumi,aws,eks
|
|
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.165.0
|
|
13
|
+
Requires-Dist: pulumi-aws<8.0.0,>=7.14.0
|
|
14
|
+
Requires-Dist: pulumi-kubernetes<5.0.0,>=4.19.0
|
|
15
|
+
Requires-Dist: semver>=2.8.1
|
|
16
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
17
|
+
|
|
18
|
+
[](https://github.com/pulumi/pulumi-eks/actions/workflows/master.yml)
|
|
19
|
+
[](https://slack.pulumi.com)
|
|
20
|
+
[](https://badge.fury.io/js/@pulumi%2Feks)
|
|
21
|
+
[](https://pypi.org/project/pulumi-eks)
|
|
22
|
+
[](https://badge.fury.io/nu/pulumi.eks)
|
|
23
|
+
[](https://pkg.go.dev/github.com/pulumi/pulumi-eks/sdk/go/eks)
|
|
24
|
+
|
|
25
|
+
# Pulumi Amazon Web Services (AWS) EKS Components
|
|
26
|
+
|
|
27
|
+
The Pulumi EKS library provides a Pulumi component that creates and manages the resources necessary to run an EKS Kubernetes cluster in AWS. This component exposes the Crosswalk for AWS functionality documented in the [Pulumi Elastic Kubernetes Service guide](https://www.pulumi.com/docs/guides/crosswalk/aws/eks/) as a package available in all Pulumi languages.
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
This includes:
|
|
31
|
+
- The EKS cluster control plane.
|
|
32
|
+
- The cluster's worker nodes configured as node groups, which are managed by an auto scaling group.
|
|
33
|
+
- The AWS CNI Plugin [`aws-k8s-cni`](https://github.com/aws/amazon-vpc-cni-k8s/) to manage pod networking in Kubernetes.
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<div>
|
|
37
|
+
<a href="https://www.pulumi.com/templates/kubernetes/aws/" title="Get Started">
|
|
38
|
+
<img src="https://www.pulumi.com/images/get-started.svg?" width="120">
|
|
39
|
+
</a>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
## Installing
|
|
43
|
+
|
|
44
|
+
This package is available in many languages in the standard packaging formats.
|
|
45
|
+
|
|
46
|
+
### Node.js (JavaScript/TypeScript)
|
|
47
|
+
|
|
48
|
+
To use from JavaScript or TypeScript in Node.js, install it using either `npm`:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
$ npm install @pulumi/eks
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
or `yarn`:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
$ yarn add @pulumi/eks
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Python
|
|
61
|
+
|
|
62
|
+
To use from Python, install using `pip`:
|
|
63
|
+
|
|
64
|
+
$ pip install pulumi_eks
|
|
65
|
+
|
|
66
|
+
### Go
|
|
67
|
+
|
|
68
|
+
To use from Go, use `go get` to grab the latest version of the library
|
|
69
|
+
|
|
70
|
+
$ go get github.com/pulumi/pulumi-eks/sdk/go
|
|
71
|
+
|
|
72
|
+
### .NET
|
|
73
|
+
|
|
74
|
+
To use from .NET, install using `dotnet add package`:
|
|
75
|
+
|
|
76
|
+
$ dotnet add package Pulumi.Eks
|
|
77
|
+
|
|
78
|
+
## References
|
|
79
|
+
|
|
80
|
+
* [Tutorial](https://www.pulumi.com/blog/easily-create-and-manage-aws-eks-kubernetes-clusters-with-pulumi/)
|
|
81
|
+
* [Reference Documentation](https://www.pulumi.com/registry/packages/eks/api-docs/)
|
|
82
|
+
* [Examples](./examples)
|
|
83
|
+
* [Crosswalk for AWS - EKS Guide](https://www.pulumi.com/docs/guides/crosswalk/aws/eks/)
|
|
84
|
+
|
|
85
|
+
## Contributing
|
|
86
|
+
|
|
87
|
+
If you are interested in contributing, please see the [contributing docs][contributing].
|
|
88
|
+
|
|
89
|
+
## Code of Conduct
|
|
90
|
+
|
|
91
|
+
Please follow the [code of conduct][code-of-conduct].
|
|
92
|
+
|
|
93
|
+
[contributing]: CONTRIBUTING.md
|
|
94
|
+
[code-of-conduct]: CODE-OF-CONDUCT.md
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
pulumi_eks/__init__.py,sha256=buLnTRGBVG6QQ3CU4GvRZjMdVC6K9lwNkLRoAQCUu_Y,1269
|
|
2
|
+
pulumi_eks/_enums.py,sha256=Jeko3WJvl7sqgSwysyA6bLFK-_-wGsYwcyT0hJKXB0M,6476
|
|
3
|
+
pulumi_eks/_inputs.py,sha256=WxDmn7MABtk7e35T5GSSRmAm2yRr711emcTNbi0g75o,188083
|
|
4
|
+
pulumi_eks/_utilities.py,sha256=go1JpdO6Vw1Y94n-VsRex4ibpR0L2YHnukK6G1FjLO0,10781
|
|
5
|
+
pulumi_eks/addon.py,sha256=Gzgq7K-_HotMhCVjM26VtTtBSkGFFMKJS0OZSREm5B4,16966
|
|
6
|
+
pulumi_eks/cluster.py,sha256=OECI3c_N2WcC0PeSBbiYIiOlVshZNO-XgQ3QP5EIyhM,118760
|
|
7
|
+
pulumi_eks/cluster_creation_role_provider.py,sha256=RFKHOhD-0jlj7GtK_-hm-wlIJmOuRb6zGGOu2hIov44,5241
|
|
8
|
+
pulumi_eks/managed_node_group.py,sha256=WnxeF-gwkFlz6f5rV9c3x8PJ1q-hTT7fL4RQ3eM78EI,71541
|
|
9
|
+
pulumi_eks/node_group.py,sha256=jNlGn-BGeTZERroAB3r-J8kCxQK-6ZDC1oj1t81mekU,73315
|
|
10
|
+
pulumi_eks/node_group_security_group.py,sha256=qPoJL2DEccvMI7fJqhR1f91DX8x8lSmg98RXSwtXBmk,8851
|
|
11
|
+
pulumi_eks/node_group_v2.py,sha256=7qHLlGbmiOIbKChqYHMfaEdacwloXoOj7lspqE7LvSs,77383
|
|
12
|
+
pulumi_eks/outputs.py,sha256=y0zLcKtObmtfICUT_LrnHUO77KPQQUMJEer1-wP4Vas,70000
|
|
13
|
+
pulumi_eks/provider.py,sha256=MNXNVIEamP1ixVZaabcGLjWYywaK_1lku0tsjscohzI,2949
|
|
14
|
+
pulumi_eks/pulumi-plugin.json,sha256=Wiqg_GUSlKZ2teyMIrc0cQBnMAlcWXDXjKbMsHg-NRM,79
|
|
15
|
+
pulumi_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
pulumi_eks/vpc_cni_addon.py,sha256=0ly2gd-MklWLaeenJzxVS3xbOUYU9V_eOgvDq6JKmAw,50966
|
|
17
|
+
pulumi_eks-4.3.0a1768463252.dist-info/METADATA,sha256=cWtnQjn-kKK0Zu2BCaqRSYCcEf0CzTFAJZCwYwS4jvI,3339
|
|
18
|
+
pulumi_eks-4.3.0a1768463252.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
pulumi_eks-4.3.0a1768463252.dist-info/top_level.txt,sha256=pLk06t5vc1n4iOAnjUmUuyu3lg9DOpn5K10ijRrRmdE,11
|
|
20
|
+
pulumi_eks-4.3.0a1768463252.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pulumi_eks
|