Merge "[CONSUL] Add limits to consul chart."
[oom.git] / kubernetes / so / components / so-etsi-nfvo-ns-lcm / resources / config / overrides / override.yaml
1 # Copyright © 2020 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: {{ include "so.helpers.profileProperty" (dict "condition" .Values.global.security.aaf.enabled "value1" .Values.global.aaf.auth.header "value2" .Values.aai.auth )}}
17   version: v19
18   endpoint: https://aai.{{ include "common.namespace" . }}:8443
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       nfvo:
30         jdbcUrl: jdbc:mariadb://${DB_HOST}:${DB_PORT}/nfvo
31         username: ${DB_ADMIN_USERNAME}
32         password: ${DB_ADMIN_PASSWORD}
33         driver-class-name: org.mariadb.jdbc.Driver
34         pool-name: nfvo-pool
35         registerMbeans: true
36   security:
37     usercredentials:
38     - username: ${ETSI_NFVO_USERNAME}
39       password: ${ETSI_NFVO_PASSWORD}
40       role: ETSI-NFVO-Client
41 server:
42   port: {{ .Values.containerPort }}
43   tomcat:
44     max-threads: 50
45 mso:
46   key: {{ .Values.mso.key }}
47 so:
48   adapters:
49     sol003-adapter:
50       url: https://so-vnfm-adapter.{{ include "common.namespace" . }}:9092/so/vnfm-adapter/v1
51       auth: {{ .Values.so.sol003.adapter.auth }}
52 etsi-catalog-manager:
53   base:
54   {{- if .Values.global.msbEnabled }}
55     endpoint: https://msb-iag:443/api
56   http:
57     client:
58       ssl:
59         trust-store: ${TRUSTSTORE}
60         trust-store-password: ${TRUSTSTORE_PASSWORD}
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