From 0f797da47867b3b596d42f590c83eb0a83af881e Mon Sep 17 00:00:00 2001 From: Gustavo Fonseca <55834874+Gustavo-SF@users.noreply.github.com> Date: Wed, 18 Sep 2024 15:59:37 +0100 Subject: [PATCH] setting correct host with https (#310) ## Changes - ## Issue(s) - # --- .github/workflows/deployment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 4028974..8eed2ff 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -65,12 +65,12 @@ jobs: if [ ${{ github.ref }} == 'refs/heads/main' ]; then cluster_name="production" postgres_db="portal" - ingress_host="portal.lisbondatascience.org" + ingress_host="https://portal.lisbondatascience.org" else cluster_name="development" postgres_db="portaldev" - ingress_host="portal.dev-lisbondatascience.org" + ingress_host="https://portal.dev-lisbondatascience.org" fi aws eks update-kubeconfig --name $cluster_name