From 59477a0743344149249a07967f33f6671542384e Mon Sep 17 00:00:00 2001 From: Vivek Singh Date: Thu, 22 Feb 2024 19:38:31 +0100 Subject: [PATCH] Change mongoDB helm chart version that we install (#2684) integration test for mongoDB started failing because upstream helm chart seems to be broken. this makes sure that we install older version of chart to install the app successfully. --- pkg/app/mongodb.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/app/mongodb.go b/pkg/app/mongodb.go index d722f108d5..2428d939dc 100644 --- a/pkg/app/mongodb.go +++ b/pkg/app/mongodb.go @@ -61,6 +61,7 @@ func NewMongoDB(name string) HelmApp { RepoURL: helm.BitnamiRepoURL, RepoName: helm.BitnamiRepoName, Chart: "mongodb", + Version: "14.11.1", Values: map[string]string{ "architecture": "replicaset", "image.pullPolicy": "Always",