mirror of
https://github.com/hashicorp/terraform-provider-helm.git
synced 2026-02-18 18:19:30 -05:00
Terraform Provider - Helm (K8s packages)
|
Some checks are pending
build / Detect Go toolchain version (push) Waiting to run
build / Parse version file (push) Waiting to run
build / generate-metadata-file (push) Blocked by required conditions
build / upload-terraform-registry-manifest-artifact (push) Blocked by required conditions
build / Go darwin 386 build (push) Blocked by required conditions
build / Go freebsd 386 build (push) Blocked by required conditions
build / Go linux 386 build (push) Blocked by required conditions
build / Go windows 386 build (push) Blocked by required conditions
build / Go darwin amd64 build (push) Blocked by required conditions
build / Go freebsd amd64 build (push) Blocked by required conditions
build / Go linux amd64 build (push) Blocked by required conditions
build / Go windows amd64 build (push) Blocked by required conditions
build / Go freebsd arm build (push) Blocked by required conditions
build / Go linux arm build (push) Blocked by required conditions
build / Go darwin arm64 build (push) Blocked by required conditions
build / Go linux arm64 build (push) Blocked by required conditions
build / What's next? (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
HashiCorp Copywrite / copywrite (push) Waiting to run
tests / get_version_matrix (push) Waiting to run
tests / unit_test (push) Waiting to run
tests / acc_test (push) Blocked by required conditions
Bumps [github.com/cloudflare/circl](https://github.com/cloudflare/circl) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/cloudflare/circl/releases) - [Commits](https://github.com/cloudflare/circl/compare/v1.6.0...v1.6.1) --- updated-dependencies: - dependency-name: github.com/cloudflare/circl dependency-version: 1.6.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.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.