diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2024-09-10 06:32:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-09-10 06:32:53 +0000 |
commit | 01f83d9602683b6b96c0e76fcb6b437b8bc87c16 (patch) | |
tree | d428aefe842a97a3df7f6a18e563cbecd2d19d6c /kubernetes/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml | |
parent | bea8f3a6f3db1060ade64faa219cce6bf453cdb2 (diff) | |
parent | f7ae955675b9b3a2710ddefd00fc5b223a9ec83c (diff) |
Merge "[POLICY] Fix postgres support and SASL"
Diffstat (limited to 'kubernetes/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml')
-rw-r--r-- | kubernetes/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/kubernetes/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml b/kubernetes/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml index 35e42c589d..2e09397806 100644 --- a/kubernetes/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml +++ b/kubernetes/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml @@ -1,5 +1,5 @@ # ============LICENSE_START======================================================= -# Copyright (C) 2021-2023 Nordix Foundation. +# Copyright (C) 2021-2024 Nordix Foundation. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -25,8 +25,13 @@ spring: converters: preferred-json-mapper: gson datasource: - url: jdbc:mariadb://{{ .Values.db.service.name }}:{{ .Values.db.service.internalPort }}/clampacm + {{ if .Values.global.mariadbGalera.useInPolicy }} + url: jdbc:mariadb://{{ .Values.db.service.mariadbName }}:{{ .Values.db.service.mariadbPort }}/clampacm driverClassName: org.mariadb.jdbc.Driver + {{ else }} + url: jdbc:postgresql://{{ .Values.db.service.pgName }}:{{ .Values.db.service.pgPort }}/clampacm + driverClassName: org.postgresql.Driver + {{ end }} username: ${SQL_USER} password: ${SQL_PASSWORD} hikari: @@ -42,7 +47,11 @@ spring: implicit-strategy: org.onap.policy.common.spring.utils.CustomImplicitNamingStrategy properties: hibernate: - dialect: org.hibernate.dialect.MariaDB103Dialect + {{ if .Values.global.mariadbGalera.useInPolicy }} + dialect: org.hibernate.dialect.MariaDBDialect + {{ else }} + dialect: org.hibernate.dialect.PostgreSQLDialect + {{ end }} format_sql: true metrics: @@ -105,4 +114,4 @@ management: endpoints: web: exposure: - include: health, metrics, prometheus + include: health, metrics, prometheus
\ No newline at end of file |