blob: 88275aea83db90b2df93553f36af63d08bbf6f40 [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
yangyanaaeedab2020-02-06 10:27:01 +080023 reg_to_msb_when_start: False
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010024 mariadb_admin: root
yangyanyj9e05b262019-02-01 17:31:40 +080025 persistence:
26 mountPath: /dockerdata-nfs
mahendrr08c3f452018-04-12 06:57:07 +000027
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010028#################################################################
29# Secrets metaconfig
30#################################################################
31secrets:
32 - uid: "db-root-pass"
33 name: &dbRootPassSecret '{{ include "common.release" . }}-vfc-db-root-pass'
34 type: password
35 password: '{{ .Values.config.mariadbRootPassword }}'
36
Mike Elliott6ba69cd2018-04-03 16:37:06 -040037# application configuration
38config:
39 logstashServiceName: log-ls
40 logstashPort: 5044
41
yangyane9871c52019-04-04 16:28:28 +080042mariadb-galera:
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010043 config:
44 mariadbRootPasswordExternalSecret: *dbRootPassSecret
yangyane9871c52019-04-04 16:28:28 +080045 nameOverride: vfc-mariadb
46 service:
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010047 name: vfc-mariadb
48 portName: vfc-mariadb
yangyane9871c52019-04-04 16:28:28 +080049 nfsprovisionerPrefix: vfc
50 persistence:
51 mountSubPath: vfc/data
52 enabled: true
53 disableNfsProvisioner: true
54
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010055db: &dbConfig
56 mariadbService: vfc-mariadb
57 mariadbPort: 3306
58 mariadbRootPasswordExternalSecret: *dbRootPassSecret
59
60vfc-catalog:
yangyane9871c52019-04-04 16:28:28 +080061 config:
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010062 << : *dbConfig
63
64vfc-nslcm:
yangyane9871c52019-04-04 16:28:28 +080065 config:
Krzysztof Opasiaka9010db2020-02-26 23:36:22 +010066 << : *dbConfig
67
68vfc-vnflcm:
69 config:
70 << : *dbConfig
71
72vfc-vnfmgr:
73 config:
74 << : *dbConfig
75
76vfc-vnfres:
77 config:
78 << : *dbConfig
79
Mike Elliott6ba69cd2018-04-03 16:37:06 -040080# sub-chart configuration
81vfc-workflow:
82 service:
83 externalPort: 10550
84
85vfc-workflow-engine:
86 config:
mahendrr08c3f452018-04-12 06:57:07 +000087 workflowPort: 10550