Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / so / components / so-cnfm-lcm / resources / config / overrides / override.yaml
1 # Copyright © 2023 Nordix Foundation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 aai:
16   auth: {{ .Values.aai.auth }}
17   version: v24
18   endpoint: http://aai.{{ include "common.namespace" . }}:80
19 spring:
20   datasource:
21     hikari:
22       camunda:
23         jdbcUrl: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn
24         username: ${DB_USERNAME}
25         password: ${DB_PASSWORD}
26         driver-class-name: org.mariadb.jdbc.Driver
27         pool-name: bpmn-pool
28         registerMbeans: true
29       cnfm:
30         jdbcUrl: jdbc:mariadb://${DB_HOST}:${DB_PORT}/cnfm
31         username: ${DB_ADMIN_USERNAME}
32         password: ${DB_ADMIN_PASSWORD}
33         driver-class-name: org.mariadb.jdbc.Driver
34         pool-name: cnfm-pool
35         registerMbeans: true
36 server:
37   port: {{ .Values.containerPort }}
38   tomcat:
39     max-threads: 50
40 mso:
41   key: {{ .Values.mso.key }}
42 sdc:
43   username: {{ .Values.sdc.username }}
44   password: {{ .Values.sdc.password }}
45   key: {{ .Values.sdc.key }}
46   endpoint: http://sdc-be.{{ include "common.namespace" . }}:8080
47 camunda:
48   bpm:
49     history-level: full
50     job-execution:
51       max-pool-size: 30
52       core-pool-size: 3
53       deployment-aware: true