Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hashicorp/terraform-provider-helm
Terraform Helm provider
https://github.com/hashicorp/terraform-provider-helm
helm kubernetes terraform terraform-provider
Last synced: 26 days ago
JSON representation
Terraform Helm provider
- Host: GitHub
- URL: https://github.com/hashicorp/terraform-provider-helm
- Owner: hashicorp
- License: mpl-2.0
- Created: 2017-06-25T15:30:14.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T12:50:58.000Z (7 months ago)
- Last Synced: 2024-04-13T13:05:08.309Z (7 months ago)
- Topics: helm, kubernetes, terraform, terraform-provider
- Language: Go
- Homepage: https://www.terraform.io/docs/providers/helm/
- Size: 146 MB
- Stars: 976
- Watchers: 49
- Forks: 355
- Open Issues: 110
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome - terraform-provider-helm - Terraform Helm provider (Go)
- awesome-tf - terraform-provider-helm - Provider for Helm. (Providers / Hashicorp supported providers)
README
# Helm Provider for Terraform [![Actions Status](https://github.com/hashicorp/terraform-provider-helm/workflows/tests/badge.svg)](https://github.com/hashicorp/terraform-provider-helm/actions)[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/hashicorp/terraform-provider-helm?label=release)](https://github.com/hashicorp/terraform-provider-helm/releases)[![license](https://img.shields.io/github/license/hashicorp/terraform-provider-helm.svg)]()[![Go Report Card](https://goreportcard.com/badge/github.com/hashicorp/terraform-provider-helm)](https://goreportcard.com/report/github.com/hashicorp/terraform-provider-helm)
- [Documentation](https://www.terraform.io/docs/providers/helm/index.html)
- [Mailing list](http://groups.google.com/group/terraform-tool)
- [#terraform-providers in Kubernetes Slack](https://kubernetes.slack.com/messages/CJY6ATQH4) ([Sign up here](http://slack.k8s.io/))This is the [Helm](https://github.com/kubernetes/helm) provider for [Terraform](https://www.terraform.io/).
This provider allows you to install and manage [Helm Charts](https://artifacthub.io/packages/search?kind=0&sort=relevance&page=1) in your Kubernetes cluster using Terraform.
## Contents
* [Requirements](#requirements)
* [Getting Started](#getting-started)
* [Contributing to the provider](#contributing)## Requirements
- [Terraform](https://www.terraform.io/downloads.html) v0.12.x
- [Go](https://golang.org/doc/install) v1.18.x (to build the provider plugin)## Getting Started
This is a small example of how to install the nginx ingress controller chart. Please read the [documentation](https://www.terraform.io/docs/providers/helm/index.html) for more
information.```hcl
provider "helm" {
kubernetes {
config_path = "~/.kube/config"
}
}resource "helm_release" "nginx_ingress" {
name = "nginx-ingress-controller"repository = "https://charts.bitnami.com/bitnami"
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](_about/CONTRIBUTING.md). You may also [report an issue](https://github.com/hashicorp/terraform-provider-helm/issues/new/choose). Once you've filed an issue, it will follow the [issue lifecycle](_about/ISSUES.md).
Also available are some answers to [Frequently Asked Questions](_about/FAQ.md).