Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 0936a75e authored by David Parimucha's avatar David Parimucha
Browse files

Merge branch 'fix-optimize' into 'main'

added timeout variable for helm chart

See merge request !4
parents dbe08748 f1db2ea3
No related branches found
No related tags found
1 merge request!4added timeout variable for helm chart
...@@ -7,6 +7,7 @@ resource "helm_release" "this" { ...@@ -7,6 +7,7 @@ resource "helm_release" "this" {
namespace = each.value["helm-release-namespace"] namespace = each.value["helm-release-namespace"]
create_namespace = each.value["helm-release-create-namespace"] create_namespace = each.value["helm-release-create-namespace"]
values = each.value["helm-release-custom-config-files"] values = each.value["helm-release-custom-config-files"]
timeout = each.value["helm-release-timeout"]
dynamic "set" { dynamic "set" {
for_each = each.value["custom-sets"] for_each = each.value["custom-sets"]
......
...@@ -28,6 +28,7 @@ variable "helm-release" { ...@@ -28,6 +28,7 @@ variable "helm-release" {
helm-release-repository = string helm-release-repository = string
helm-release-name = string helm-release-name = string
helm-release-custom-config-files = list(string) helm-release-custom-config-files = list(string)
helm-release-timeout = number
custom-sets = map(object({ custom-sets = map(object({
set-name = string set-name = string
set-value = string set-value = string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment