From 69b534947632336ea99069c9a951bd36f68d878b Mon Sep 17 00:00:00 2001 From: j0can Date: Mon, 10 Mar 2025 11:12:53 +0100 Subject: [PATCH 1/3] fix: Set default force_update to false in Helm release module --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index cf8ffb1..0417d79 100644 --- a/main.tf +++ b/main.tf @@ -10,7 +10,7 @@ resource "helm_release" "this" { name = var.app["name"] version = var.app["version"] chart = var.app["chart"] - force_update = lookup(var.app, "force_update", true) + force_update = lookup(var.app, "force_update", false) wait = lookup(var.app, "wait", true) recreate_pods = lookup(var.app, "recreate_pods", true) max_history = lookup(var.app, "max_history", 0) From 30a0adbed3c2d4f9c20d89dc6a65311c39fb772b Mon Sep 17 00:00:00 2001 From: j0can Date: Tue, 11 Mar 2025 11:18:37 +0100 Subject: [PATCH 2/3] feat: add support for description in helm release --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index 0417d79..aafa33e 100644 --- a/main.tf +++ b/main.tf @@ -11,6 +11,7 @@ resource "helm_release" "this" { version = var.app["version"] chart = var.app["chart"] force_update = lookup(var.app, "force_update", false) + description = lookup(var.app, "description", null) wait = lookup(var.app, "wait", true) recreate_pods = lookup(var.app, "recreate_pods", true) max_history = lookup(var.app, "max_history", 0) From bda01add302a0437d48eee69b22212cc8d3c1876 Mon Sep 17 00:00:00 2001 From: j0can Date: Tue, 11 Mar 2025 11:22:33 +0100 Subject: [PATCH 3/3] fix: update readme for description input --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index def0b68..f2d691a 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ module jenkins { app = { name = "jenkins" + description = "some custom description" version = "1.5.0" chart = "jenkins" force_update = true