blob: 06f68e7ca9c271b9f5890c13f562d2eaf126f9de [file] [log] [blame]
Fiachra Corcoranbe966552018-08-07 16:58:45 +01001# 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# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
econwar28266fa2019-03-05 16:39:00 +000020 loggingDirectory: /opt/app/datartr/logs
Sylvain Desbureauxce3b4612020-03-10 08:45:42 +010021 persistence: {}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010022
23#################################################################
Krzysztof Opasiake55b4d52020-02-07 22:54:20 +010024# Secrets metaconfig
25#################################################################
26secrets:
27 - uid: dmaap-dr-db-user-secret
28 name: '{{ include "common.release" . }}-dmaap-dr-db-user-secret'
29 type: basicAuth
30 externalSecret: '{{ tpl (default "" .Values.config.dmaapDrDb.userCredentialsExternalSecret) . }}'
31 login: '{{ .Values.config.dmaapDrDb.userName }}'
32 password: '{{ .Values.config.dmaapDrDb.userPassword }}'
33
34#################################################################
Fiachra Corcoranbe966552018-08-07 16:58:45 +010035# Application configuration defaults.
36#################################################################
37# application image
efiacorf8a53302020-03-06 12:48:07 +000038image: onap/dmaap/datarouter-prov:2.1.5
Fiachra Corcoranbe966552018-08-07 16:58:45 +010039pullPolicy: Always
40
41# flag to enable debugging - application support required
42debugEnabled: false
43
44# application configuration - see parent values chart
45
46# default number of instances
47replicaCount: 1
48
49nodeSelector: {}
50
51affinity: {}
52
53# probe configuration parameters
54liveness:
55 initialDelaySeconds: 30
56 periodSeconds: 10
57 # necessary to disable liveness probe when setting breakpoints
58 # in debugger so K8s doesn't restart unresponsive container
59 enabled: true
60
61readiness:
62 initialDelaySeconds: 30
63 periodSeconds: 10
64
65## Persist data to a persitent volume
66persistence:
Sylvain Desbureauxce3b4612020-03-10 08:45:42 +010067 enabled: true
efiacore62958b2019-09-27 16:54:36 +010068 volumeReclaimPolicy: Retain
69 accessMode: ReadWriteOnce
70 mountPath: /dockerdata-nfs
71
72 aafCredsMountSubPath: data-router/dr-prov/aaf-props
73 aafCredsSize: 10M
74 aafCredsPath: /opt/app/osaaf/local
Fiachra Corcoranbe966552018-08-07 16:58:45 +010075
76ingress:
77 enabled: false
Lucjan Bryndza554759c2019-11-27 15:02:14 +010078 service:
79 - baseaddr: "dmaapdrprov"
80 name: "dmaap-dr-prov"
81 port: 8443
82 config:
83 ssl: "redirect"
Fiachra Corcoranbe966552018-08-07 16:58:45 +010084
econwar28266fa2019-03-05 16:39:00 +000085config:
86 # dr provisioning server configuration
87 dmaapDrProv:
88 servicetype: NodePort
econwar28266fa2019-03-05 16:39:00 +000089 internalPort: 8080
90 internalPort2: 8443
91 portName: dr-prov-port
92 portName2: dr-prov-port2
93 nodePort: 59
94 nodePort2: 69
efiacor9ef176c2020-02-20 16:50:30 +000095 # dr uses the EELF Logging framework https://github.com/att/EELF
96 # and supports the following log levels: TRACE, DEBUG, INFO, WARN, ERROR, OFF
97 logLevel: "INFO"
98
econwar28266fa2019-03-05 16:39:00 +000099 # dr-prov db configuration
100 dmaapDrDb:
101 mariadbServiceName: dmaap-dr-db-svc
102 mariadbServicePort: 3306
103 mariadbContName: dmaap-dr-db
Krzysztof Opasiake55b4d52020-02-07 22:54:20 +0100104 userName: datarouter
105# userPassword: password
106# userCredentialsExternalSecret: some secret
econwar28266fa2019-03-05 16:39:00 +0000107
108# mariadb-galera configuration
109mariadb:
110 name: dmaap-dr-db
111 nameOverride: dmaap-dr-db
112 replicaCount: 2
113 config:
Krzysztof Opasiake55b4d52020-02-07 22:54:20 +0100114 userCredentialsExternalSecret: '{{ include "common.release" . }}-dmaap-dr-db-user-secret'
econwar28266fa2019-03-05 16:39:00 +0000115 mysqlDatabase: datarouter
116 service:
117 name: dmaap-dr-db-svc
118 portName: dmaap-dr-db-svc
119 nfsprovisionerPrefix: dmaap-dr-db
120 persistence:
121 size: 1Gi
122 mountSubPath: data-router/dr-db-data
Yang Xu4ec3d012019-04-24 12:25:39 -0400123 disableNfsProvisioner: true
efiacore62958b2019-09-27 16:54:36 +0100124
125#AAF local config
126aafConfig:
efiacor6ca697d2020-03-06 16:30:05 +0000127 aafDeployFqi: deployer@people.osaaf.org
efiacore62958b2019-09-27 16:54:36 +0100128 aafDeployPass: demo123456!
129 fqdn: dmaap-dr-prov
130 fqi: dmaap-dr-prov@dmaap-dr.onap.org
131 publicFqdn: dmaap-dr.onap.org
132 cadiLatitude: 0.0
133 cadiLongitude: 0.0
134
135# Resource Limit flavor -By Default using small
136flavor: small
137# Segregation for Different environment (Small and Large)
138resources:
139 small:
140 limits:
141 cpu: 2000m
142 memory: 4Gi
143 requests:
144 cpu: 500m
145 memory: 1Gi
146 large:
147 limits:
148 cpu: 4000m
149 memory: 8Gi
150 requests:
151 cpu: 1000m
152 memory: 2Gi
Krzysztof Opasiake55b4d52020-02-07 22:54:20 +0100153 unlimited: {}