From 344fda90d7d8b2fe34fc4c7bfde3dcc5d2bb482d Mon Sep 17 00:00:00 2001 From: albarbaro Date: Thu, 16 Jul 2026 10:41:31 +0200 Subject: [PATCH 1/3] debug AUTH_PROVIDERS_GITLAB_HOST --- e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts b/e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts index 17c38235e6..088c6fa6db 100644 --- a/e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts +++ b/e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts @@ -64,6 +64,9 @@ test.describe("Configure GitLab Provider", async () => { expect(process.env.AUTH_PROVIDERS_GITLAB_PARENT_ORG).toBeDefined(); expect(process.env.DEFAULT_USER_PASSWORD).toBeDefined(); + + console.log(`[DEBUG E2E] AUTH_PROVIDERS_GITLAB_HOST: ${process.env.AUTH_PROVIDERS_GITLAB_HOST}`); + // Initialize GitLab helper and create OAuth application dynamically gitlabHelper = new GitLabHelper({ host: process.env.AUTH_PROVIDERS_GITLAB_HOST!, From 21708338ddbce60cf0f1d5281acaccb53381cd1a Mon Sep 17 00:00:00 2001 From: albarbaro Date: Thu, 16 Jul 2026 17:32:35 +0200 Subject: [PATCH 2/3] debug AUTH_PROVIDERS_GITLAB_HOST --- .../utils/authentication-providers/rhdh-deployment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e-tests/playwright/utils/authentication-providers/rhdh-deployment.ts b/e2e-tests/playwright/utils/authentication-providers/rhdh-deployment.ts index 77a192ed25..8f7b013fab 100644 --- a/e2e-tests/playwright/utils/authentication-providers/rhdh-deployment.ts +++ b/e2e-tests/playwright/utils/authentication-providers/rhdh-deployment.ts @@ -1428,7 +1428,7 @@ class RHDHDeployment { this.setAppConfigProperty("catalog.providers", { gitlab: { - default: { + orgProvider: { host: "${AUTH_PROVIDERS_GITLAB_HOST}", orgEnabled: true, group: "${AUTH_PROVIDERS_GITLAB_PARENT_ORG}", From e5f21a51f1a41345e6b3e315d481606d835e6e52 Mon Sep 17 00:00:00 2001 From: albarbaro Date: Fri, 17 Jul 2026 09:10:41 +0200 Subject: [PATCH 3/3] fix gitlab config --- e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts b/e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts index 088c6fa6db..17c38235e6 100644 --- a/e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts +++ b/e2e-tests/playwright/e2e/auth-providers/gitlab.spec.ts @@ -64,9 +64,6 @@ test.describe("Configure GitLab Provider", async () => { expect(process.env.AUTH_PROVIDERS_GITLAB_PARENT_ORG).toBeDefined(); expect(process.env.DEFAULT_USER_PASSWORD).toBeDefined(); - - console.log(`[DEBUG E2E] AUTH_PROVIDERS_GITLAB_HOST: ${process.env.AUTH_PROVIDERS_GITLAB_HOST}`); - // Initialize GitLab helper and create OAuth application dynamically gitlabHelper = new GitLabHelper({ host: process.env.AUTH_PROVIDERS_GITLAB_HOST!,