From 39d4fececbf6c98beac48db3048e52251cdbd611 Mon Sep 17 00:00:00 2001 From: Remi Planel <rplanel@pasteur.fr> Date: Fri, 22 Apr 2022 15:58:12 +0200 Subject: [PATCH] Try with postgres user and dbname --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c54c1594..103701db 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,8 +55,11 @@ services: before_script: - helm version variables: - POSTGRES_USER: ${POSTGRES_USER} - POSTGRES_DB: ${POSTGRES_DB} + # POSTGRES_USER: ${POSTGRES_USER} + # POSTGRES_DB: ${POSTGRES_DB} + POSTGRES_USER: postgres + POSTGRES_DB: postgres + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} NODE_ENV: production script: -- GitLab