mirror of https://github.com/pulumi/pulumi.git
ca60d337e2
With https://github.com/pulumi/pulumi/pull/15957 we introduced the schema setting `Languages.Python.InputTypes` to optionally generate TypedDict based input types side-by-side with Args classes. This setting defaulted to `classes`, meaning that only Args classes are generated. To enable the TypedDict types, SDK authors had to explicitly opt in by setting it to `classes-and-dicts`. We now flip this setting to generating TypedDict input types side-by-side with the Args classes, unless explicitly disabled by setting it to `classes`. Fixes https://github.com/pulumi/pulumi/issues/16375 |
||
---|---|---|
.. | ||
core | ||
helm | ||
meta | ||
yaml | ||
README.md | ||
__init__.py | ||
_inputs.py | ||
_utilities.py | ||
provider.py | ||
pulumi-plugin.json | ||
py.typed |
README.md
The Kubernetes provider package offers support for all Kubernetes resources and their properties. Resources are exposed as types from modules based on Kubernetes API groups such as 'apps', 'core', 'rbac', and 'storage', among many others. Additionally, support for deploying Helm charts ('helm') and YAML files ('yaml') is available in this package. Using this package allows you to programmatically declare instances of any Kubernetes resources and any supported resource version using infrastructure as code, which Pulumi then uses to drive the Kubernetes API.
If this is your first time using this package, these two resources may be helpful:
- Kubernetes Getting Started Guide: Get up and running quickly.
- Kubernetes Pulumi Setup Documentation: How to configure Pulumi for use with your Kubernetes cluster.