diff options
author | Liam Fallon <liam.fallon@est.tech> | 2021-11-10 08:06:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-11-10 08:06:20 +0000 |
commit | cbdbb2458139ec55b6a80bb4b745d5f8b7c9f3bf (patch) | |
tree | 5d05fa0a646d1b6838c5643ee4ec357288fa7a3a /packages | |
parent | 579085240812aa593ebafe787d97868e16fc3318 (diff) | |
parent | baf0a9fdfd5e699ce5950914121f093282a3e4ed (diff) |
Merge "Add Spring Jpa configuration"
Diffstat (limited to 'packages')
-rw-r--r-- | packages/policy-clamp-tarball/src/main/resources/etc/ClRuntimeParameters.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/policy-clamp-tarball/src/main/resources/etc/ClRuntimeParameters.yaml b/packages/policy-clamp-tarball/src/main/resources/etc/ClRuntimeParameters.yaml index d399b82ba..a01c49881 100644 --- a/packages/policy-clamp-tarball/src/main/resources/etc/ClRuntimeParameters.yaml +++ b/packages/policy-clamp-tarball/src/main/resources/etc/ClRuntimeParameters.yaml @@ -6,6 +6,16 @@ spring: http: converters: preferred-json-mapper: gson + datasource: + url: jdbc:mariadb://${mariadb.host:mariadb}:${mariadb.port:3306}/controlloop + driverClassName: org.mariadb.jdbc.Driver + username: policy_user + password: policy_user + hikari: + connectionTimeout: 30000 + idleTimeout: 600000 + maxLifetime: 1800000 + maximumPoolSize: 10 security: enable-csrf: false @@ -28,6 +38,7 @@ runtime: updateParameters: maxRetryCount: 3 maxWaitMs: 20000 + databasePlatform: org.eclipse.persistence.platform.database.MySQLPlatform databaseProviderParameters: name: PolicyProviderParameterGroup implementation: org.onap.policy.models.provider.impl.DatabasePolicyModelsProviderImpl |