From 794ef70845aa44a298fec7de7c499a9e61e98481 Mon Sep 17 00:00:00 2001 From: ankitm123 Date: Tue, 2 Nov 2021 06:57:56 -0400 Subject: [PATCH] fix(iss): update vault operator chart to 1.14.3 Signed-off-by: ankitm123 --- modules/vault/charts.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/vault/charts.tf b/modules/vault/charts.tf index 47a1ac2..1c8eae3 100644 --- a/modules/vault/charts.tf +++ b/modules/vault/charts.tf @@ -4,7 +4,7 @@ resource "helm_release" "vault-operator" { chart = "vault-operator" namespace = "jx-vault" repository = "https://kubernetes-charts.banzaicloud.com" - version = "1.10.0" + version = "1.14.3" create_namespace = true } @@ -14,6 +14,6 @@ resource "helm_release" "vault-instance" { chart = "vault-instance" namespace = "jx-vault" repository = "https://jenkins-x-charts.github.io/repo" - version = "1.0.22" + version = "1.0.23" depends_on = [helm_release.vault-operator] }