From a9f703813a31aca595aabb4e62c4b85c113253f1 Mon Sep 17 00:00:00 2001 From: Brendan Galloway Date: Mon, 30 Oct 2023 15:29:48 +0200 Subject: [PATCH] helm(fix): correct DB Name variable in cleanup --- .../sefaria-project/templates/configmap/mongo-destroy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-chart/sefaria-project/templates/configmap/mongo-destroy.yaml b/helm-chart/sefaria-project/templates/configmap/mongo-destroy.yaml index edbd30be88..f68339f610 100644 --- a/helm-chart/sefaria-project/templates/configmap/mongo-destroy.yaml +++ b/helm-chart/sefaria-project/templates/configmap/mongo-destroy.yaml @@ -38,7 +38,7 @@ data: {{ end }} APSCHEDULER_URI="${URI}${MONGO_HOST}/${APSCHEDULER_NAME}?ssl=false&authSource=admin" - URI="${URI}${MONGO_HOST}/${DATABASE}?ssl=false&authSource=admin" + URI="${URI}${MONGO_HOST}/${DB_NAME}?ssl=false&authSource=admin" if [[ ! -z "$MONGO_REPLICASET_NAME" ]]; then URI="${URI}&replicaSet=${MONGO_REPLICASET_NAME}"