From d99429b58aa013adef5a102645d83c1f48f71651 Mon Sep 17 00:00:00 2001 From: Galindo97 Date: Wed, 20 May 2026 13:25:04 -0500 Subject: [PATCH] fix(jenkins): pasar KC_URL como variable de entorno al contenedor Docker E2E MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit La variable KC_URL del bloque environment de Jenkins no se propaga automáticamente al bash -lc del docker exec — debe pasarse con -e explícito. Co-Authored-By: Claude Sonnet 4.6 --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index e5ae79e0..d86812ee 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -207,6 +207,7 @@ pipeline { -e VITE_KEYCLOAK_CLIENT_ID=anexo76-frontend \ -e KEYCLOAK_CLIENT_ID=anexo76-frontend \ -e ORIGIN=http://localhost:5173 \ + -e "KC_URL=${KC_URL}" \ -e "E2E_KEYCLOAK_URL=${KC_URL}" \ -e "E2E_TEST_USER=${E2E_USER}" \ -e "E2E_TEST_PASSWORD=${E2E_PASS}" \