vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # 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 | |
mahendrr | 08c3f45 | 2018-04-12 06:57:07 +0000 | [diff] [blame] | 15 | global: |
| 16 | config: |
yangyan | aaeedab | 2020-02-06 10:27:01 +0800 | [diff] [blame] | 17 | ssl_enabled: false |
| 18 | msbprotocol: https |
mahendrr | 08c3f45 | 2018-04-12 06:57:07 +0000 | [diff] [blame] | 19 | msbServiceName: msb-iag |
yangyan | aaeedab | 2020-02-06 10:27:01 +0800 | [diff] [blame] | 20 | msbPort: 443 |
yangyan | e9871c5 | 2019-04-04 16:28:28 +0800 | [diff] [blame] | 21 | redisServiceName: vfc-redis |
| 22 | redisPort: 6379 |
yangyan | aaeedab | 2020-02-06 10:27:01 +0800 | [diff] [blame] | 23 | reg_to_msb_when_start: False |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 24 | mariadb_admin: root |
yangyanyj | 9e05b26 | 2019-02-01 17:31:40 +0800 | [diff] [blame] | 25 | persistence: |
| 26 | mountPath: /dockerdata-nfs |
mahendrr | 08c3f45 | 2018-04-12 06:57:07 +0000 | [diff] [blame] | 27 | |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 28 | ################################################################# |
| 29 | # Secrets metaconfig |
| 30 | ################################################################# |
| 31 | secrets: |
| 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 Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 37 | # application configuration |
| 38 | config: |
| 39 | logstashServiceName: log-ls |
| 40 | logstashPort: 5044 |
| 41 | |
yangyan | e9871c5 | 2019-04-04 16:28:28 +0800 | [diff] [blame] | 42 | mariadb-galera: |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 43 | config: |
| 44 | mariadbRootPasswordExternalSecret: *dbRootPassSecret |
yangyan | e9871c5 | 2019-04-04 16:28:28 +0800 | [diff] [blame] | 45 | nameOverride: vfc-mariadb |
| 46 | service: |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 47 | name: vfc-mariadb |
| 48 | portName: vfc-mariadb |
yangyan | e9871c5 | 2019-04-04 16:28:28 +0800 | [diff] [blame] | 49 | nfsprovisionerPrefix: vfc |
| 50 | persistence: |
| 51 | mountSubPath: vfc/data |
| 52 | enabled: true |
| 53 | disableNfsProvisioner: true |
| 54 | |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 55 | db: &dbConfig |
| 56 | mariadbService: vfc-mariadb |
| 57 | mariadbPort: 3306 |
| 58 | mariadbRootPasswordExternalSecret: *dbRootPassSecret |
| 59 | |
| 60 | vfc-catalog: |
yangyan | e9871c5 | 2019-04-04 16:28:28 +0800 | [diff] [blame] | 61 | config: |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 62 | << : *dbConfig |
| 63 | |
| 64 | vfc-nslcm: |
yangyan | e9871c5 | 2019-04-04 16:28:28 +0800 | [diff] [blame] | 65 | config: |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 66 | << : *dbConfig |
| 67 | |
| 68 | vfc-vnflcm: |
| 69 | config: |
| 70 | << : *dbConfig |
| 71 | |
| 72 | vfc-vnfmgr: |
| 73 | config: |
| 74 | << : *dbConfig |
| 75 | |
| 76 | vfc-vnfres: |
| 77 | config: |
| 78 | << : *dbConfig |
| 79 | |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 80 | # sub-chart configuration |
| 81 | vfc-workflow: |
| 82 | service: |
| 83 | externalPort: 10550 |
| 84 | |
| 85 | vfc-workflow-engine: |
| 86 | config: |
mahendrr | 08c3f45 | 2018-04-12 06:57:07 +0000 | [diff] [blame] | 87 | workflowPort: 10550 |