Compare commits

..

12 Commits

Author SHA1 Message Date
Jan
f50b4237d4 Merge pull request #352 from samply/develop
Release
2025-10-22 10:09:56 +02:00
Jan
0838851993 Merge pull request #345 from samply/develop
Develop main
2025-09-30 14:58:20 +02:00
Jan
af3b7cc3a2 Merge pull request #338 from samply/develop
Develop Main
2025-08-20 11:10:18 +02:00
Jan
fad2283e6d Merge pull request #334 from samply/develop
Develop Main
2025-07-25 11:27:14 +02:00
Jan
ecbef2cd0c Merge pull request #331 from samply/develop
Develop to Main
2025-07-24 16:15:05 +02:00
Jan
66fe90ff98 Merge pull request #314 from samply/develop 2025-06-11 11:29:09 +02:00
Jan
03b520bfcc Merge pull request #308 from samply/develop 2025-05-21 15:45:39 +02:00
Jan
4082292f99 Merge pull request #306 from samply/develop 2025-05-20 11:52:02 +02:00
Martin Lablans
e22ac4b066 Merge pull request #300 from samply/develop
Merge develop into main
2025-05-09 09:31:47 +02:00
Jan
cd38957dd7 Merge pull request #289 from samply/develop
Merge develop into main
2025-04-15 10:17:11 +02:00
Jan
4ef585bfc5 Merge pull request #281 from samply/develop
Merge develop into main
2025-03-17 10:02:58 +01:00
Torben Brenner
6ca67ca082 Merge pull request #270 from samply/develop 2025-02-20 15:46:40 +01:00
5 changed files with 5 additions and 8 deletions

View File

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

View File

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

View File

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

View File

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

View File

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