5fc28e2cc2a34899dda611299950e7c181860afe
[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: {{ include "so.helpers.profileProperty" (dict "condition" .Values.global.security.aaf.enabled "value1" .Values.global.aaf.auth.header "value2" .Values.aai.auth )}}
19   version: v19
20   endpoint: https://aai.{{ include "common.namespace" . }}:8443
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   port: {{ .Values.containerPort }}
45   tomcat:
46     max-threads: 50
47 mso:
48   key: {{ .Values.mso.key }}
49 so:
50   adapters:
51     sol003-adapter:
52       url: http://so-etsi-sol003-adapter.{{ include "common.namespace" . }}:9092/so/vnfm-adapter/v1
53       auth: {{ .Values.so.sol003.adapter.auth }}
54 etsi-catalog-manager:
55   base:
56   {{- if .Values.global.msbEnabled }}
57     endpoint: https://msb-iag:443/api
58   http:
59     client:
60       ssl:
61         trust-store: file:${TRUSTSTORE}
62         trust-store-password: ${TRUSTSTORE_PASSWORD}
63   {{- else }}
64     endpoint: http://modeling-etsicatalog.{{ include "common.namespace" . }}:8806/api
65   {{- end }}
66 camunda:
67   bpm:
68     history-level: full
69     job-execution:
70       max-pool-size: 30
71       core-pool-size: 3
72       deployment-aware: true