Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / so / components / so-etsi-nfvo-ns-lcm / resources / config / overrides / override.yaml
1 {{/*
2 # Copyright © 2020 Nordix Foundation
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16
17 aai:
18   auth: {{ .Values.aai.auth }}
19   version: v19
20   endpoint: http://aai.{{ include "common.namespace" . }}:80
21 spring:
22   datasource:
23     hikari:
24       camunda:
25         jdbcUrl: jdbc:mariadb://${DB_HOST}:${DB_PORT}/camundabpmn
26         username: ${DB_USERNAME}
27         password: ${DB_PASSWORD}
28         driver-class-name: org.mariadb.jdbc.Driver
29         pool-name: bpmn-pool
30         registerMbeans: true
31       nfvo:
32         jdbcUrl: jdbc:mariadb://${DB_HOST}:${DB_PORT}/nfvo
33         username: ${DB_ADMIN_USERNAME}
34         password: ${DB_ADMIN_PASSWORD}
35         driver-class-name: org.mariadb.jdbc.Driver
36         pool-name: nfvo-pool
37         registerMbeans: true
38   security:
39     usercredentials:
40     - username: ${ETSI_NFVO_USERNAME}
41       password: ${ETSI_NFVO_PASSWORD}
42       role: ETSI-NFVO-Client
43 server:
44   {{- if include "common.onServiceMesh" . }}
45   forward-headers-strategy: none
46   {{- end }}
47   port: {{ .Values.containerPort }}
48   tomcat:
49     max-threads: 50
50 mso:
51   key: {{ .Values.mso.key }}
52 so:
53   adapters:
54     sol003-adapter:
55       url: http://so-etsi-sol003-adapter.{{ include "common.namespace" . }}:9092/so/vnfm-adapter/v1
56       auth: {{ .Values.so.sol003.adapter.auth }}
57 etsi-catalog-manager:
58   base:
59   {{- if .Values.global.msbEnabled }}
60     endpoint: http://msb-iag:80/api
61   {{- else }}
62     endpoint: http://modeling-etsicatalog.{{ include "common.namespace" . }}:8806/api
63   {{- end }}
64 camunda:
65   bpm:
66     history-level: full
67     job-execution:
68       max-pool-size: 30
69       core-pool-size: 3
70       deployment-aware: true