diff options
author | liamfallon <liam.fallon@est.tech> | 2021-12-13 14:33:33 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-01-11 11:09:44 +0000 |
commit | 312ab3700fea8579a9f072f095f3c6a1ef66f9d0 (patch) | |
tree | 3a273809a1c78637578d4148bba857e8d0c9b594 /kubernetes/policy/components/policy-clamp-cl-runtime/resources/config | |
parent | 98b40be0f580491e015b0c1c33debfccb40a404f (diff) |
[POLICY] Update docker images to latest versions
The image versions in policy values.yaml files have been updated and the
CLAMP runtime configuration has been updated to use Spring style
configuration
*** This commit is generated by a PF release script ***
Issue-ID: POLICY-3827
Signed-off-by: liamfallon <liam.fallon@est.tech>
Change-Id: I220773eb7728d8f5cff36faad388970e1732f12c
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'kubernetes/policy/components/policy-clamp-cl-runtime/resources/config')
-rw-r--r-- | kubernetes/policy/components/policy-clamp-cl-runtime/resources/config/clRuntimeParameters.yaml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/kubernetes/policy/components/policy-clamp-cl-runtime/resources/config/clRuntimeParameters.yaml b/kubernetes/policy/components/policy-clamp-cl-runtime/resources/config/clRuntimeParameters.yaml index 250e91213c..157db833b2 100644 --- a/kubernetes/policy/components/policy-clamp-cl-runtime/resources/config/clRuntimeParameters.yaml +++ b/kubernetes/policy/components/policy-clamp-cl-runtime/resources/config/clRuntimeParameters.yaml @@ -1,5 +1,5 @@ # ============LICENSE_START======================================================= -# Copyright (C) 2021 Nordix Foundation. All rights reserved. +# Copyright (C) 2021-2022 Nordix Foundation. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -24,6 +24,16 @@ spring: http: converters: preferred-json-mapper: gson + datasource: + url: jdbc:mariadb://{{ .Values.db.service.name }}:{{ .Values.db.service.internalPort }}/controlloop + driverClassName: org.mariadb.jdbc.Driver + username: ${SQL_USER} + password: ${SQL_PASSWORD} + hikari: + connectionTimeout: 30000 + idleTimeout: 600000 + maxLifetime: 1800000 + maximumPoolSize: 10 security: enable-csrf: false @@ -47,6 +57,7 @@ runtime: updateParameters: maxRetryCount: 3 maxWaitMs: 100000 + databasePlatform: org.eclipse.persistence.platform.database.MySQLPlatform databaseProviderParameters: name: PolicyProviderParameterGroup implementation: org.onap.policy.models.provider.impl.DatabasePolicyModelsProviderImpl |