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 | 0a90d8d | 2020-03-11 10:14:42 +0800 | [diff] [blame] | 23 | # 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. |
yangyan | aaeedab | 2020-02-06 10:27:01 +0800 | [diff] [blame] | 28 | reg_to_msb_when_start: False |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 29 | mariadb_admin: &mariadbAdmin root |
yangyanyj | 9e05b26 | 2019-02-01 17:31:40 +0800 | [diff] [blame] | 30 | persistence: |
| 31 | mountPath: /dockerdata-nfs |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 32 | mariadbGalera: &mariadbGalera |
| 33 | #This flag allows VFC to instantiate its own mariadb-galera cluster |
| 34 | localCluster: false |
| 35 | service: mariadb-galera |
| 36 | internalPort: 3306 |
| 37 | nameOverride: mariadb-galera |
mahendrr | 08c3f45 | 2018-04-12 06:57:07 +0000 | [diff] [blame] | 38 | |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 39 | ################################################################# |
| 40 | # Secrets metaconfig |
| 41 | ################################################################# |
| 42 | secrets: |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 43 | - uid: db-root-pass |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 44 | name: &dbRootPassSecret '{{ include "common.release" . }}-vfc-db-root-pass' |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 45 | externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "rootUser" "externalSecret")) .) (hasSuffix "db-root-pass" (index .Values "mariadb-galera" "rootUser" "externalSecret"))}}' |
| 46 | login: '{{ index .Values "mariadb-galera" "rootUser" "user" }}' |
| 47 | password: '{{ index .Values "mariadb-galera" "rootUser" "password" }}' |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 48 | type: password |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 49 | |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 50 | # application configuration |
| 51 | config: |
| 52 | logstashServiceName: log-ls |
| 53 | logstashPort: 5044 |
| 54 | |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 55 | mariadb-galera: &localMariadb |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 56 | rootUser: |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 57 | user: *mariadbAdmin |
| 58 | # password: |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 59 | externalSecret: *dbRootPassSecret |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 60 | nameOverride: &dbServer vfc-mariadb |
yangyan | e9871c5 | 2019-04-04 16:28:28 +0800 | [diff] [blame] | 61 | nfsprovisionerPrefix: vfc |
| 62 | persistence: |
| 63 | mountSubPath: vfc/data |
| 64 | enabled: true |
| 65 | disableNfsProvisioner: true |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 66 | serviceAccount: |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 67 | nameOverride: *dbServer |
Sylvain Desbureaux | 4d04706 | 2021-05-05 17:16:57 +0200 | [diff] [blame] | 68 | replicaCount: 1 |
yangyan | e9871c5 | 2019-04-04 16:28:28 +0800 | [diff] [blame] | 69 | |
Sylvain Desbureaux | 0cd5fee | 2020-11-19 17:35:56 +0100 | [diff] [blame] | 70 | vfc-generic-vnfm-driver: |
| 71 | enabled: true |
| 72 | |
| 73 | vfc-huawei-vnfm-driver: |
| 74 | enabled: true |
| 75 | |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 76 | vfc-nslcm: |
Sylvain Desbureaux | 0cd5fee | 2020-11-19 17:35:56 +0100 | [diff] [blame] | 77 | enabled: true |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 78 | mariadb-galera: *localMariadb |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 79 | |
Sylvain Desbureaux | 0cd5fee | 2020-11-19 17:35:56 +0100 | [diff] [blame] | 80 | vfc-redis: |
| 81 | enabled: true |
| 82 | |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 83 | vfc-vnflcm: |
Sylvain Desbureaux | 0cd5fee | 2020-11-19 17:35:56 +0100 | [diff] [blame] | 84 | enabled: true |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 85 | mariadb-galera: *localMariadb |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 86 | |
| 87 | vfc-vnfmgr: |
Sylvain Desbureaux | 0cd5fee | 2020-11-19 17:35:56 +0100 | [diff] [blame] | 88 | enabled: true |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 89 | mariadb-galera: *localMariadb |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 90 | |
| 91 | vfc-vnfres: |
Sylvain Desbureaux | 0cd5fee | 2020-11-19 17:35:56 +0100 | [diff] [blame] | 92 | enabled: true |
Mahmoud Abdelhamid | a74326f | 2021-09-24 17:28:28 +0200 | [diff] [blame] | 93 | mariadb-galera: *localMariadb |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 94 | |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 95 | # sub-chart configuration |
| 96 | vfc-workflow: |
| 97 | service: |
| 98 | externalPort: 10550 |
| 99 | |
| 100 | vfc-workflow-engine: |
| 101 | config: |
mahendrr | 08c3f45 | 2018-04-12 06:57:07 +0000 | [diff] [blame] | 102 | workflowPort: 10550 |
Sylvain Desbureaux | 0cd5fee | 2020-11-19 17:35:56 +0100 | [diff] [blame] | 103 | |
| 104 | vfc-zte-vnfm-driver: |
Sylvain Desbureaux | 4d04706 | 2021-05-05 17:16:57 +0200 | [diff] [blame] | 105 | enabled: true |