-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all non-major dependencies (#279)
* chore(deps): update all non-major dependencies * reformated snapshot * fix formatting * updated dockerfile and java to 21 * chore(deps): updates for camle 4.6 * enable stats * set routePolicyLevel * updated dev config --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: chgl <chgl@users.noreply.github.com>
- Loading branch information
1 parent
9754067
commit f412a22
Showing
50 changed files
with
2,100 additions
and
2,008 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 |
---|---|---|
|
@@ -5,3 +5,4 @@ list/ | |
gradle/ | ||
hack/ | ||
tests/ | ||
Dockerfile |
This file contains 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 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 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 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 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 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,20 @@ | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
kubeadmConfigPatches: | ||
- | | ||
kind: InitConfiguration | ||
nodeRegistration: | ||
kubeletExtraArgs: | ||
node-labels: "ingress-ready=true" | ||
extraPortMappings: | ||
- containerPort: 80 | ||
hostPort: 80 | ||
protocol: TCP | ||
- containerPort: 443 | ||
hostPort: 443 | ||
protocol: TCP | ||
|
||
# kind create cluster --config=hack/k8s/kind-with-ingress-config.yaml | ||
# kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/provider/kind/deploy.yaml |
This file contains 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,96 @@ | ||
list: | ||
ingress: | ||
enabled: true | ||
|
||
fhirserver: | ||
postgresql: | ||
auth: | ||
# kics-scan ignore-line | ||
postgresPassword: fhir | ||
|
||
query: | ||
# run every minute | ||
schedule: "* * * * *" | ||
cohortSelectorLabels: [] | ||
shouldWaitForNotify: true | ||
omop: | ||
host: broadsea-atlasdb | ||
port: 5432 | ||
database: postgres | ||
username: postgres | ||
# kics-scan ignore-line | ||
password: mypass | ||
resultsSchema: demo_cdm_results | ||
cdmSchema: demo_cdm | ||
webAPI: | ||
dataSource: EUNOMIA | ||
extraEnv: | ||
- name: QUERY_WEBAPI_COHORT_CACHE_SCHEMA | ||
value: webapi | ||
|
||
notify: | ||
rules: | ||
schedules: | ||
everyMorning: "0 0 8 1/1 * ? *" | ||
trials: | ||
- acronym: "*" | ||
subscriptions: | ||
- email: "everything@example.com" | ||
|
||
- acronym: "Demo new users of diclofenac" | ||
accessibleBy: | ||
users: | ||
- "user1" | ||
- "user.two@example.com" | ||
subscriptions: | ||
- email: "everyMorning@example.com" | ||
notify: "everyMorning" | ||
- email: "demo@example.com" | ||
|
||
ohdsi: | ||
postgresql: | ||
enabled: false | ||
webApi: | ||
db: | ||
host: broadsea-atlasdb | ||
port: 5432 | ||
database: "postgres" | ||
username: "postgres" | ||
# kics-scan ignore-line | ||
password: "mypass" | ||
schema: "webapi" | ||
extraEnv: | ||
- name: FLYWAY_BASELINEONMIGRATE | ||
value: "true" | ||
- name: FLYWAY_TABLE | ||
value: schema_history | ||
- name: flyway_baselineVersionAsString | ||
value: "2.2.5.20180212152023" | ||
- name: FLYWAY_BASELINEDESCRIPTION | ||
value: "Base Migration" | ||
- name: FLYWAY_LOCATIONS | ||
value: "classpath:db/migration/postgresql" | ||
cdmInitJob: | ||
enabled: false | ||
achilles: | ||
schemas: | ||
cdm: "demo_cdm" | ||
vocab: "demo_cdm" | ||
res: "demo_cdm_results" | ||
sourceName: "EUNOMIA" | ||
ingress: | ||
enabled: true | ||
hosts: | ||
- host: recruit-ohdsi.127.0.0.1.nip.io | ||
|
||
broadseaAtlasdb: | ||
enabled: true | ||
|
||
mailhog: | ||
ingress: | ||
enabled: true | ||
hosts: | ||
- host: recruit-mailhog.127.0.0.1.nip.io | ||
paths: | ||
- path: "/" | ||
pathType: Prefix |
This file contains 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 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.