feat(install): Passing same tag for db upgrade

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
rjshrjndrn 2024-05-28 11:50:22 +02:00
parent c4dc704c9e
commit 490c12cc5d

View file

@ -277,7 +277,8 @@ function install() {
mv vars.yaml "$override_tmpdir"
err_cd "$override_tmpdir"
}
SKIP_K8S_TOOLS=1 DOMAIN_NAME=$domain_name bash init.sh
[[ -z $OR_VERSION ]] || HELM_OPTIONS="${HELM_OPTIONS} --set dbMigrationUpstreamBranch=${OR_VERSION}"
HELM_OPTIONS=${HELM_OPTIONS} SKIP_K8S_TOOLS=1 DOMAIN_NAME=$domain_name bash init.sh
return
}