-
Notifications
You must be signed in to change notification settings - Fork 7
BBMRI obfuscation and rounding, other people's changes #377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
6dea7c8
Directory sync: inherit host timezone (#354)
DavidCroftDKFZ 230ff1d
feat: add PSCC
PierreDelpy 58d3e64
feat: add nNGM project (#340)
djuarezgf 394dcc2
Directory sync: token login and cron change (#351)
DavidCroftDKFZ ab6e058
feat(dnpm): set timezone to Europe/Berlin (#359)
nr23730 56a8aac
Add APP_spot_KEY env var under the beam-proxy section. (#358)
mmwaikar e2569f4
Use the main image name for cce explorer. (#360)
mmwaikar 57f49ab
feat: migrate pscc to orange cloud broker (#361)
PierreDelpy d0c87b4
Use the cce-explorer:main image from docker hub (instead of ghcr). (#…
mmwaikar a5120ba
obfuscate BBMRI ERIC way, test blaze version (#363)
enola-dkfz dd3387c
test version blaze (#364)
enola-dkfz 85cfc25
update beam proxy server used for oauth enrollment (#366)
Threated 7dc9e2e
Changes to make deployed CCE explorer work properly. (#368)
mmwaikar 6923ead
feat: itcc lens2 (#365)
Martin1088 bff06a6
fix kr deployment (#370)
PierreDelpy 7a9f805
sites moved to etc itcc.comf (#369)
Martin1088 9d3ec95
Activate Directory token login (#371)
DavidCroftDKFZ c1de9b8
WIP: enable osiris2fhir in PSCC for GR (#372)
PierreDelpy bbda992
feature: add osiris2fhir in cce and minor fixes (#374)
PierreDelpy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| #!/bin/bash | ||
|
|
||
| if [ -n "${DS_DIRECTORY_USER_NAME}" ]; then | ||
| if [ -n "${DS_DIRECTORY_USER_NAME}" ] || [ -n "${DS_DIRECTORY_USER_TOKEN}" ]; then | ||
| log INFO "Directory sync setup detected -- will start directory sync service." | ||
| OVERRIDE+=" -f ./$PROJECT/modules/directory-sync-compose.yml" | ||
| fi | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,32 +1,46 @@ | ||
| version: "3.7" | ||
| services: | ||
| landing: | ||
| lens: | ||
| container_name: lens_federated-search | ||
| image: docker.verbis.dkfz.de/ccp/lens:${SITE_ID} | ||
| image: samply/cce-explorer:main | ||
| environment: | ||
| PUBLIC_SPOT_URL: https://${HOST}/prod | ||
| labels: | ||
| - "traefik.http.services.lens.loadbalancer.server.port=3000" | ||
| - "traefik.enable=true" | ||
| - "traefik.http.routers.landing.rule=PathPrefix(`/`)" | ||
| - "traefik.http.services.landing.loadbalancer.server.port=80" | ||
| - "traefik.http.routers.landing.tls=true" | ||
| - "traefik.http.routers.lens.rule=Host(`${HOST}`)" | ||
| - "traefik.http.routers.lens.tls=true" | ||
|
|
||
| spot: | ||
| image: docker.verbis.dkfz.de/ccp-private/central-spot | ||
| image: samply/rustyspot:latest | ||
| environment: | ||
| HTTP_PROXY: ${HTTP_PROXY_URL} | ||
| HTTPS_PROXY: ${HTTPS_PROXY_URL} | ||
| NO_PROXY: beam-proxy | ||
| BEAM_SECRET: "${FOCUS_BEAM_SECRET_SHORT}" | ||
| BEAM_URL: http://beam-proxy:8081 | ||
| BEAM_PROXY_ID: ${SITE_ID} | ||
| BEAM_BROKER_ID: ${BROKER_ID} | ||
| BEAM_APP_ID: "focus" | ||
| BEAM_PROXY_URL: http://beam-proxy:8081 | ||
| BEAM_APP_ID: "spot.${SITE_ID}.${BROKER_ID}" | ||
| CORS_ORIGIN: "https://${HOST}" | ||
| SITES: ${SITES} | ||
| TRANSFORM: LENS | ||
| PROJECT: cce | ||
| BIND_ADDR: 0.0.0.0:8055 | ||
| depends_on: | ||
| - "beam-proxy" | ||
| labels: | ||
| - "traefik.enable=true" | ||
| - "traefik.http.services.spot.loadbalancer.server.port=8080" | ||
| - "traefik.http.services.spot.loadbalancer.server.port=8055" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolallowmethods=GET,OPTIONS,POST" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolallowheaders=content-type" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolalloworiginlist=https://${HOST}" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolallowcredentials=true" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolmaxage=-1" | ||
| - "traefik.http.routers.spot.rule=Host(`${HOST}`) && PathPrefix(`/backend`)" | ||
| - "traefik.http.middlewares.stripprefix_spot.stripprefix.prefixes=/backend" | ||
| - "traefik.http.routers.spot.rule=Host(`${HOST}`) && PathPrefix(`/prod`)" | ||
| - "traefik.http.middlewares.stripprefix_spot.stripprefix.prefixes=/prod" | ||
| - "traefik.http.routers.spot.tls=true" | ||
| - "traefik.http.routers.spot.middlewares=corsheaders2,stripprefix_spot,auth" | ||
|
|
||
| beam-proxy: | ||
| environment: | ||
| APP_spot_KEY: ${FOCUS_BEAM_SECRET_SHORT} | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| #!/bin/bash | ||
| if [ -n "$ENABLE_OSIRIS2FHIR" ]; then | ||
| log INFO "OSIRIS2FHIR-REST setup detected -- will start osiris2fhir module." | ||
| OVERRIDE+=" -f ./pscc/modules/osiris2fhir-compose.yml" | ||
| LOCAL_SALT="$(echo \"local-random-salt\" | openssl pkeyutl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)" | ||
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,4 +11,4 @@ for module in $PROJECT/modules/*.sh | |
| do | ||
| log DEBUG "sourcing $module" | ||
| source $module | ||
| done | ||
| done | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| #!/bin/bash | ||
|
|
||
| if [ -n "$ENABLE_OMICS" ];then | ||
| OVERRIDE+=" -f ./$PROJECT/modules/itcc-omics-ingest.yaml" | ||
| GENERATE_API_KEY="$(generate_simple_password 'omics')" | ||
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| services: | ||
| omics-endpoint: | ||
| image: ghcr.io/samply/itcc-omics-ingest:main | ||
| environment: | ||
| - API_KEY=${GENERATE_API_KEY} | ||
| volumes: | ||
| - /var/cache/bridgehead/omics/data:/data/uploads | ||
| labels: | ||
| - "traefik.http.routers.omics.rule=Host(`${HOST}`) && PathPrefix(`/api/omics`)" | ||
| - "traefik.enable=true" | ||
| - "traefik.http.services.omics.loadbalancer.server.port=6080" | ||
| - "traefik.http.routers.omics.tls=true" | ||
| - "traefik.http.middlewares.omics-stripprefix.stripprefix.prefixes=/api" | ||
| - "traefik.http.routers.omics.middlewares=omics-stripprefix" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,32 +1,47 @@ | ||
| version: "3.7" | ||
| services: | ||
| landing: | ||
| container_name: lens_federated-search | ||
| image: docker.verbis.dkfz.de/ccp/lens:${SITE_ID} | ||
| itcc-explorer: | ||
| container_name: lens_itcc_explorer | ||
| image: samply/itcc-explorer:main | ||
| environment: | ||
| HOST: "0.0.0.0" | ||
| BIND_ADDR: "0.0.0.0:3000" | ||
| PUBLIC_ENVIRONMENT: ${PUBLIC_ENVIRONMENT} | ||
| labels: | ||
| - "traefik.enable=true" | ||
| - "traefik.http.routers.landing.rule=PathPrefix(`/`)" | ||
| - "traefik.http.services.landing.loadbalancer.server.port=80" | ||
| - "traefik.http.routers.landing.tls=true" | ||
| - "traefik.http.routers.itcc.rule=Host(`${HOST}`) && PathPrefix(`/`)" | ||
| - "traefik.http.routers.itcc.entrypoints=websecure" | ||
| - "traefik.http.services.itcc.loadbalancer.server.port=3000" | ||
| - "traefik.http.routers.itcc.tls=true" | ||
|
|
||
| spot: | ||
| image: docker.verbis.dkfz.de/ccp-private/central-spot | ||
| image: samply/rustyspot:latest | ||
| environment: | ||
| BEAM_SECRET: "${FOCUS_BEAM_SECRET_SHORT}" | ||
| BEAM_URL: http://beam-proxy:8081 | ||
| BEAM_PROXY_URL: http://beam-proxy:8081 | ||
| BEAM_PROXY_ID: ${SITE_ID} | ||
| BEAM_BROKER_ID: ${BROKER_ID} | ||
| BEAM_APP_ID: "focus" | ||
| BEAM_APP_ID: "spot.${SITE_ID}.${BROKER_ID}" | ||
| CORS_ORIGIN: "https://${HOST}" | ||
| SITES: ${SITES} | ||
| TRANSFORM: LENS | ||
| PROJECT: "itcc" | ||
| BIND_ADDR: 0.0.0.0:8055 | ||
| depends_on: | ||
| - "beam-proxy" | ||
| labels: | ||
| - "traefik.enable=true" | ||
| - "traefik.http.services.spot.loadbalancer.server.port=8080" | ||
| - "traefik.http.services.spot.loadbalancer.server.port=8055" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolallowmethods=GET,OPTIONS,POST" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolallowheaders=content-type" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolalloworiginlist=https://${HOST}" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolallowcredentials=true" | ||
| - "traefik.http.middlewares.corsheaders2.headers.accesscontrolmaxage=-1" | ||
| - "traefik.http.routers.spot.rule=Host(`${HOST}`) && PathPrefix(`/backend`)" | ||
| - "traefik.http.middlewares.stripprefix_spot.stripprefix.prefixes=/backend" | ||
| - "traefik.http.routers.spot.rule=Host(`${HOST}`) && PathPrefix(`/prod`)" | ||
| - "traefik.http.middlewares.stripprefix_spot.stripprefix.prefixes=/prod" | ||
| - "traefik.http.routers.spot.tls=true" | ||
| - "traefik.http.routers.spot.middlewares=corsheaders2,stripprefix_spot,auth" | ||
|
|
||
| beam-proxy: | ||
| environment: | ||
| APP_spot_KEY: ${FOCUS_BEAM_SECRET_SHORT} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.