Skip to content

Commit

Permalink
fix: replace broken helm repository, upgrade bank-vaults and vault
Browse files Browse the repository at this point in the history
part of fix for jenkins-x/jx#8688
  • Loading branch information
msvticket committed Oct 21, 2024
1 parent d35162a commit e89e909
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions modules/vault/charts.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ resource "helm_release" "vault-operator" {
name = "vault-operator"
chart = "vault-operator"
namespace = "jx-vault"
repository = "https://kubernetes-charts.banzaicloud.com"
version = "1.14.3"
repository = "oci://ghcr.io/bank-vaults/helm-charts"
version = "1.22.3"
create_namespace = true
}

Expand All @@ -14,10 +14,15 @@ resource "helm_release" "vault-instance" {
chart = "vault-instance"
namespace = "jx-vault"
repository = "https://jenkins-x-charts.github.io/repo"
version = "1.0.24"
version = "1.0.28"
depends_on = [helm_release.vault-operator]
set {
name = "ingress.enabled"
value = "false"
}

set {
name = "bankVaultsImage"
value = "ghcr.io/bank-vaults/bank-vaults:v1.31.2"
}
}

0 comments on commit e89e909

Please sign in to comment.