Skip to content
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

Feat: add new config for integrating teamproject and arborist check #2397

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions kube/services/ohdsi-webapi/ohdsi-webapi-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ stringData:
security_oauth_callback_api: https://atlas.$hostname/WebAPI/user/oauth/callback
security_oauth_callback_urlResolver: query

security_ohdsi_custom_authorization_mode: teamproject
security_ohdsi_custom_authorization_url: $ARBORIST_URL/auth/mapping

logging_level_root: info
logging_level_org_ohdsi: info
logging_level_org_apache_shiro: info
7 changes: 7 additions & 0 deletions kube/services/ohdsi-webapi/ohdsi-webapi-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ spec:
containers:
- name: ohdsi-webapi
GEN3_OHDSI-WEBAPI_IMAGE|-image: quay.io/cdis/ohdsi-webapi:latest-|
env:
- name: ARBORIST_URL
valueFrom:
configMapKeyRef:
name: manifest-global
key: arborist_url
optional: true
livenessProbe:
httpGet:
path: /WebAPI/info/
Expand Down
Loading