From ac79423b7279dfc6f5b27181d7fa3ca9da8bc080 Mon Sep 17 00:00:00 2001 From: Mart van Santen <mart@greenhost.nl> Date: Fri, 26 Nov 2021 07:36:26 +0100 Subject: [PATCH] Trying to make cheese for enviroment vars --- .gitlab-ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a7d79c0..7adf2ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -136,10 +136,10 @@ behave-integration: variables: FLASK_RUN_HOST: 0.0.0.0 FLASK_RUN_PORT: 5000 - HYDRA_ADMIN_URL: http://hydra:4445 - KRATOS_PUBLIC_URL: http://kratos:4433 - KRATOS_ADMIN_URL: http://kratos:4434 - PUBLIC_URL: http://localhost:5000/ + HYDRA_ADMIN_URL: "http://hydra:4445" + KRATOS_PUBLIC_URL: "http://kratos:4433" + KRATOS_ADMIN_URL: "http://kratos:4434" + PUBLIC_URL: "http://localhost:5000/" DATABASE_URL: "postgresql://postgres:postgres@localhost/postgres" variables: # Feature Flag FF_NETWORK_PER_BUILD Enables creation of a docker network per build @@ -147,10 +147,10 @@ behave-integration: # interconnection. Requires gitlab-runner v12.9.0 FF_NETWORK_PER_BUILD: 1 DATABASE_HOST: "postgres" - URLS_LOGIN: "http://login:5000/login" - URLS_LOGOUT: "http://logout:5002/logout" - URLS_CONSENT: "http://consent:5001/consent" - URLS_SELF_ISSUER: "http://hydra:4444/" +# URLS_LOGIN: "http://login:5000/login" +# URLS_LOGOUT: "http://logout:5002/logout" +# URLS_CONSENT: "http://consent:5001/consent" +# URLS_SELF_ISSUER: "http://hydra:4444/" BASE_URL: "http://hydra:4444/" HYDRA_ADMIN_URL: "http://hydra:4445" ACCESS_TOKEN_URL: "http://hydra:4444/oauth2/token" -- GitLab