blob: 19197c7f76a4a3735ae41be1b78ad88919e3b9a2 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
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
mahendrr08c3f452018-04-12 06:57:07 +000015global:
16 config:
yangyanaaeedab2020-02-06 10:27:01 +080017 ssl_enabled: false
18 msbprotocol: https
mahendrr08c3f452018-04-12 06:57:07 +000019 msbServiceName: msb-iag
yangyanaaeedab2020-02-06 10:27:01 +080020 msbPort: 443
yangyane9871c52019-04-04 16:28:28 +080021 redisServiceName: vfc-redis
22 redisPort: 6379
yangyan0a90d8d2020-03-11 10:14:42 +080023# Becaue now oom can register the microservice to msb automatically,
24# If it is set to false, vfc contanier will not register again, if it is
25# set to true, vfc will register by itself.
26# we use this flag to determine who is responbile for serice registeration
27# and it can reduce duplicate registration.
yangyanaaeedab2020-02-06 10:27:01 +080028 reg_to_msb_when_start: False
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010029 mariadb_admin: root
yangyanyj9e05b262019-02-01 17:31:40 +080030 persistence:
31 mountPath: /dockerdata-nfs
mahendrr08c3f452018-04-12 06:57:07 +000032
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010033#################################################################
34# Secrets metaconfig
35#################################################################
36secrets:
37 - uid: "db-root-pass"
38 name: &dbRootPassSecret '{{ include "common.release" . }}-vfc-db-root-pass'
39 type: password
40 password: '{{ .Values.config.mariadbRootPassword }}'
41
Mike Elliott6ba69cd2018-04-03 16:37:06 -040042# application configuration
43config:
44 logstashServiceName: log-ls
45 logstashPort: 5044
46
yangyane9871c52019-04-04 16:28:28 +080047mariadb-galera:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010048 rootUser:
49 externalSecret: *dbRootPassSecret
50 nameOverride: &vfc-mariadb vfc-mariadb
yangyane9871c52019-04-04 16:28:28 +080051 nfsprovisionerPrefix: vfc
52 persistence:
53 mountSubPath: vfc/data
54 enabled: true
55 disableNfsProvisioner: true
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010056 serviceAccount:
57 nameOverride: *vfc-mariadb
yangyane9871c52019-04-04 16:28:28 +080058
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010059db: &dbConfig
60 mariadbService: vfc-mariadb
61 mariadbPort: 3306
62 mariadbRootPasswordExternalSecret: *dbRootPassSecret
63
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010064vfc-generic-vnfm-driver:
65 enabled: true
66
67vfc-huawei-vnfm-driver:
68 enabled: true
69
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010070vfc-nslcm:
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010071 enabled: true
yangyane9871c52019-04-04 16:28:28 +080072 config:
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010073 << : *dbConfig
74
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010075vfc-redis:
76 enabled: true
77
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010078vfc-vnflcm:
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010079 enabled: true
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010080 config:
81 << : *dbConfig
82
83vfc-vnfmgr:
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010084 enabled: true
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010085 config:
86 << : *dbConfig
87
88vfc-vnfres:
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +010089 enabled: true
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010090 config:
91 << : *dbConfig
92
Mike Elliott6ba69cd2018-04-03 16:37:06 -040093# sub-chart configuration
94vfc-workflow:
95 service:
96 externalPort: 10550
97
98vfc-workflow-engine:
99 config:
mahendrr08c3f452018-04-12 06:57:07 +0000100 workflowPort: 10550
Sylvain Desbureaux0cd5fee2020-11-19 17:35:56 +0100101
102vfc-zte-vnfm-driver:
103 enabled: true