mirror of
https://github.com/hashicorp/terraform-provider-helm
synced 2026-07-22 22:53:50 +00:00
No description
- Go 89.8%
- Go Template 4.8%
- Shell 2.4%
- HCL 1.7%
- Makefile 1.3%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
* Fix SECVULN-42899: Upgrade Helm and Kubernetes dependencies - Upgrade helm.sh/helm/v3 from v3.18.5 to v3.20.2 - Upgrade Kubernetes dependencies from v0.33.3 to v0.35.1 - Update structured-merge-diff from v4 to v6 for compatibility - Update test fixture to match new Kubernetes API serialization format * Update changelog entry with PR number * Fix OCI registry tests for Helm 3.20.2 Add --plain-http flag to helm push and helm registry login commands to support HTTP-only test registry with upgraded Helm version. --------- Co-authored-by: Angel Raphael <angelraphael@dhcp-9-81-81-135.n3d-in.ibm.com> |
||
| .changelog | ||
| .github | ||
| .release | ||
| _about | ||
| docs | ||
| examples | ||
| helm | ||
| META.d | ||
| scripts | ||
| templates | ||
| tools | ||
| version | ||
| .copywrite.hcl | ||
| .gitignore | ||
| .markdownlinkcheck.json | ||
| .markdownlint.yml | ||
| CHANGELOG.md | ||
| CHANGELOG_GUIDE.md | ||
| GNUmakefile | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| main.go | ||
| README.md | ||
| terraform-registry-manifest.json | ||
Helm Provider for Terraform 



This is the Helm provider for Terraform.
This provider allows you to install and manage Helm Charts in your Kubernetes cluster using Terraform.
Contents
Requirements
Getting Started
This is a small example of how to install the nginx ingress controller chart. Please read the documentation for more information.
provider "helm" {
kubernetes = {
config_path = "~/.kube/config"
}
}
resource "helm_release" "nginx_ingress" {
name = "nginx-ingress-controller"
repository = "oci://registry-1.docker.io/bitnamicharts"
chart = "nginx-ingress-controller"
set = [
{
name = "service.type"
value = "ClusterIP"
}
]
}
Contributing
The Helm Provider for Terraform is the work of many contributors. We appreciate your help!
To contribute, please read the contribution guidelines. You may also report an issue. Once you've filed an issue, it will follow the issue lifecycle.
Also available are some answers to Frequently Asked Questions.