Skip to content

Releases: fuchicorp/terraform-helm-chart

v0.2.1

12 Nov 06:35
Compare
Choose a tag to compare

0.2.1 (2023-11-12)

Bug Fixes

  • .terraform.lock.hcl has to managed from the client side (13af66d)
  • Removed the local and template after templatefile was implemented (d181ad2)

v0.2.0

12 Nov 06:25
Compare
Choose a tag to compare

0.2.0 (2023-11-12)

Features

  • Added AI labeler and pre commit (f08eaeb)

Bug Fixes

  • Any commit to any branch will be scanned (5e33e48)
  • Centralize Semantic Release Versioning using Reusable GitHub Workflow (#41) (5d2700c)
  • Due to limitation from github github workflow should be stored in the public repo (2241f91)
  • The pre commit workflow can be called manually (d499129)

v0.1.1

19 Aug 00:33
c1bdabf
Compare
Choose a tag to compare

Updated main documentation 1b6bd2b
The module supports v0.13.7 4265506
true and false was moved to boolean type 1b6bd2b

v0.0.10

16 Mar 17:12
aeca5d6
Compare
Choose a tag to compare

Deployment endpoint changed to optional
#29

The module can deploy remote and local charts
#28

v0.0.9

29 Sep 22:31
d08a607
Compare
Choose a tag to compare

v0.0.9
Feature PR

  • Implemented deploy or not feature
  • Change remote chart to local
  • Removed remote helm_remote_deployment

v0.0.8

25 Jun 22:43
d59edbc
Compare
Choose a tag to compare

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

04 Jan 15:39
395fa51
Compare
Choose a tag to compare

Added Output.tf to the terraform helm charts. This will show you information on your deployment.

v0.0.6

22 Dec 20:57
803bf93
Compare
Choose a tag to compare

Upgraded Helm version 2 provider helm 0.10.6

We have upgraded the helm provider from 0.10.4 to 0.10.6 due to error received from the hard coded repo that is no longer used by helm. This update should resolve helm errors received.

v0.0.5

17 Oct 20:11
e99d244
Compare
Choose a tag to compare

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

25 Sep 22:46
6e2f02f
Compare
Choose a tag to compare

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"
}