Compare commits

..

8 Commits

Author SHA1 Message Date
Pierre Delpy
372b9b0591 fix: cce 2025-10-28 09:23:58 +01:00
Pierre Delpy
3c0d4ae7c6 Merge remote-tracking branch 'origin/hotfix/itcc' into hotfix/itcc 2025-10-28 09:20:58 +01:00
Pierre Delpy
e3123f8837 deactivate secret sync (which never worked for itcc/cce) 2025-10-28 09:19:34 +01:00
Pierre Delpy
0d86100a0d "fixed itcc param" 2025-10-28 09:19:08 +01:00
Pierre Delpy
187c6e6412 hotfix: make itcc lens 1 work again with legacy CQL 2025-10-28 09:19:08 +01:00
Pierre Delpy
3c5b8a70b1 deactivate secret sync (which never worked for itcc/cce) 2025-10-14 08:28:56 +02:00
Pierre Delpy
4a0f2e609d "fixed itcc param" 2025-10-13 08:27:35 +02:00
Pierre Delpy
15a6000356 hotfix: make itcc lens 1 work again with legacy CQL 2025-10-10 13:51:50 +02:00
5 changed files with 8 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ services:
- "traefik.http.routers.blaze_cce.tls=true"
focus:
image: docker.verbis.dkfz.de/cache/samply/focus:${FOCUS_TAG}
image: docker.verbis.dkfz.de/cache/samply/focus:${FOCUS_TAG}-dktk
container_name: bridgehead-focus
environment:
API_KEY: ${FOCUS_BEAM_SECRET_SHORT}
@@ -34,6 +34,7 @@ services:
EPSILON: 0.28
QUERIES_TO_CACHE: '/queries_to_cache.conf'
ENDPOINT_TYPE: ${FOCUS_ENDPOINT_TYPE:-blaze}
CQL_PROJECTS_ENABLED: "cce"
volumes:
- /srv/docker/bridgehead/cce/queries_to_cache.conf:/queries_to_cache.conf:ro
depends_on:

View File

@@ -17,6 +17,7 @@ services:
BEAM_PROXY_ID: ${SITE_ID}
BEAM_BROKER_ID: ${BROKER_ID}
BEAM_APP_ID: "focus"
PROJECT_METADATA: "cce"
depends_on:
- "beam-proxy"
labels:

View File

@@ -22,7 +22,7 @@ services:
- "traefik.http.routers.blaze_itcc.tls=true"
focus:
image: docker.verbis.dkfz.de/cache/samply/focus:${FOCUS_TAG}
image: docker.verbis.dkfz.de/cache/samply/focus:${FOCUS_TAG}-dktk
container_name: bridgehead-focus
environment:
API_KEY: ${FOCUS_BEAM_SECRET_SHORT}
@@ -34,6 +34,7 @@ services:
EPSILON: 0.28
QUERIES_TO_CACHE: '/queries_to_cache.conf'
ENDPOINT_TYPE: ${FOCUS_ENDPOINT_TYPE:-blaze}
CQL_PROJECTS_ENABLED: "itcc"
volumes:
- /srv/docker/bridgehead/itcc/queries_to_cache.conf:/queries_to_cache.conf:ro
depends_on:

View File

@@ -17,6 +17,7 @@ services:
BEAM_PROXY_ID: ${SITE_ID}
BEAM_BROKER_ID: ${BROKER_ID}
BEAM_APP_ID: "focus"
PROJECT_METADATA: "itcc"
depends_on:
- "beam-proxy"
labels:

View File

@@ -337,8 +337,7 @@ function sync_secrets() {
}
function secret_sync_gitlab_token() {
if [ "$PROJECT" == "minimal" ]; then
log "INFO" "Not running Secret Sync for project minimal"
if [[ "$PROJECT" != "dktk" && "$PROJECT" != "bbmri" ]]; then
return
fi
# Map the origin of the git repository /etc/bridgehead to the prefix recognized by Secret Sync
@@ -398,7 +397,7 @@ function secret_sync_gitlab_token() {
else
log "WARN" "Secret Sync failed"
# Remove the git credential helper
git -C /etc/bridgehead config --unset credential.helper
git -C /etc/bridgehead config --unset credential.helpera
fi
# In the past the git credential helper was also set for /srv/docker/bridgehead but never used.