Add helm chart for SO VNFM adapter
[oom.git] / kubernetes / dmaap / charts / dmaap-data-router / values.yaml
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
15 #################################################################
16 # DMaap Data Router Global config defaults.
17 #################################################################
18 global:
19   env:
20     name: AUTO
21   ubuntuInitRepository: oomk8s
22   ubuntuInitImage: ubuntu-init:1.0.0
23   loggingDirectory: /opt/app/datartr/logs
24
25   config:
26 # dr provisioning server configuration
27     dmaapDrProv:
28       servicetype: NodePort
29       name: dmaap-dr-prov
30       externalPort: 8080
31       externalPort2: 8443
32       internalPort: 8080
33       internalPort2: 8443
34       portName: dr-prov-port
35       portName2: dr-prov-port2
36       nodePort: 59
37       nodePort2: 69
38 # dr node server configuration
39     dmaapDrNode:
40       servicetype: ClusterIP
41       name: dmaap-dr-node
42       externalPort: 8080
43       externalPort2: 8443
44       internalPort: 8080
45       internalPort2: 8443
46       portName: dr-node-port
47       portName2: dr-node-port2
48 # dr-prov db configuration
49     dmaapDrDb:
50       mariadbServiceName: dmaap-dr-db-svc
51       mariadbServicePort: 3306
52       mariadbContName: dmaap-dr-db
53
54 # mariadb-galera configuration
55 mariadb:
56   name: dmaap-dr-db
57   nameOverride: dmaap-dr-db
58   replicaCount: 2
59   config:
60     mariadbRootPassword: datarouter
61     userName: datarouter
62     userPassword: datarouter
63     mysqlDatabase: datarouter
64   service:
65     name: dmaap-dr-db-svc
66     portName: dmaap-dr-db-svc
67   nfsprovisionerPrefix: dmaap-dr-db
68   persistence:
69     size: 1Gi
70     mountSubPath: data-router/dr-db-data
71   disableNfsProvisioner: true