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

chore(model): Add new PostgreSQL connection params to reference.yml #8549

Merged
merged 1 commit into from
Apr 22, 2024
Merged
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
24 changes: 24 additions & 0 deletions model/src/main/resources/reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,12 @@ ort:
sslcert: /defaultdir/postgresql.crt
sslkey: /defaultdir/postgresql.pk8
sslrootcert: /defaultdir/root.crt
connectionTimeout: 30000
idleTimeout: 600000
keepaliveTime: 0
maxLifetime: 1800000
maximumPoolSize: 10
minimumIdle: 600000

createMissingArchives: false

Expand All @@ -216,6 +222,12 @@ ort:
sslcert: /defaultdir/postgresql.crt
sslkey: /defaultdir/postgresql.pk8
sslrootcert: /defaultdir/root.crt
connectionTimeout: 30000
idleTimeout: 600000
keepaliveTime: 0
maxLifetime: 1800000
maximumPoolSize: 10
minimumIdle: 600000

config:
# A map from scanner plugin types to the plugin configuration.
Expand Down Expand Up @@ -308,6 +320,12 @@ ort:
sslcert: /defaultdir/postgresql.crt
sslkey: /defaultdir/postgresql.pk8
sslrootcert: /defaultdir/root.crt
connectionTimeout: 30000
idleTimeout: 600000
keepaliveTime: 0
maxLifetime: 1800000
maximumPoolSize: 10
minimumIdle: 600000
type: PROVENANCE_BASED

sw360Configuration:
Expand Down Expand Up @@ -343,6 +361,12 @@ ort:
sslcert: /defaultdir/postgresql.crt
sslkey: /defaultdir/postgresql.pk8
sslrootcert: /defaultdir/root.crt
connectionTimeout: 30000
idleTimeout: 600000
keepaliveTime: 0
maxLifetime: 1800000
maximumPoolSize: 10
minimumIdle: 600000

reporter:
config:
Expand Down
Loading