Releases: fuchicorp/terraform-helm-chart
v0.2.1
v0.2.0
v0.1.1
v0.0.10
v0.0.9
v0.0.9
Feature PR
- Implemented deploy or not feature
- Change remote chart to local
- Removed remote
helm_remote_deployment
v0.0.8
Hello team,
This release supports helm3. After releasing this version you will be able to work and deploy your tools with helm3.
To watch helm module demo video follow to this link
https://academy.fuchicorp.com/search/?name=Please+update+terraform+module+to+use+helm3&duration=&topic=
Issue related cache location
#21
Please fix cache location (Zhanara) WIKI
For video related cache location follow this link
https://academy.fuchicorp.com/search/?name=please+fix+cache+location&duration=&topic=
v0.0.7
v0.0.6
v0.0.5
Fixed version for helm_remote_deployment
In this release, we have implemented chart versioning option for remote charts.
remote chart use as below now have a option for release_version
which is the chart version you like to use.
module "helm_remote_deployment" {
source = "fuchicorp/chart/helm"
deployment_name = "example-deployment" ## The name of the deployment
deployment_environment = "dev" ## Name of the namespace
deployment_endpoint = "example.fuchicorp.com" ## Ingress endpoint
deployment_path = "stable/jenkins" ## Path for helm chart
release_version = "0.0.4" ## Chart version
remote_chart = "true"
values = "values.yaml" ## your values.yaml file
}
v0.0.4
What's new
In this release, we have implemented remote and local charts. Starting from now v0.0.4 is supported remote and
For local chart use
module "helm_local_deployment" {
source = "fuchicorp/chart/helm"
deployment_name = "jenkins-local-deployment-test"
deployment_environment = "dev"
deployment_endpoint = "fuchicorp.com"
deployment_path = "test"
}
For remote chart use
module "helm_remote_deployment" {
source = "../"
deployment_name = "jenkins-remote-deployment-test"
deployment_environment = "tools"
deployment_endpoint = "jenkins.fuchicorp.com"
deployment_path = "stable/jenkins"
remote_chart = "true"
values = "values.yaml"
}