blob: 5c32d9950d394a2b46b5932556c85c9d81961b2f [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:
efiacor7b9a0872019-08-28 21:20:22 +000019 loggingDirectory: /var/log/onap/datarouter
Sylvain Desbureauxce3b4612020-03-10 08:45:42 +010020 persistence: {}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010021 aafEnabled: true
Fiachra Corcoranbe966552018-08-07 16:58:45 +010022
23#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
efiacora00766f2020-04-02 20:00:49 +010027image: onap/dmaap/datarouter-node:2.1.6
Fiachra Corcoranbe966552018-08-07 16:58:45 +010028pullPolicy: Always
29
30# flag to enable debugging - application support required
31debugEnabled: false
32
33# application configuration - see parent values chart
34
35# default number of instances
36replicaCount: 1
37
38nodeSelector: {}
39
40affinity: {}
41
42# probe configuration parameters
43liveness:
44 initialDelaySeconds: 30
45 periodSeconds: 10
46 # necessary to disable liveness probe when setting breakpoints
47 # in debugger so K8s doesn't restart unresponsive container
48 enabled: true
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010049 port: api
Fiachra Corcoranbe966552018-08-07 16:58:45 +010050
51readiness:
52 initialDelaySeconds: 30
53 periodSeconds: 10
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010054 port: api
Fiachra Corcoranbe966552018-08-07 16:58:45 +010055
56## Persist data to a persitent volume
57persistence:
Sylvain Desbureauxce3b4612020-03-10 08:45:42 +010058 enabled: true
efiacor4808baa2019-03-11 23:36:05 +000059 mountPath: /dockerdata-nfs
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010060 spool:
61 enabled: true
62 volumeReclaimPolicy: Retain
63 accessMode: ReadWriteOnce
64 mountSubPath: data-router/dr-node/spool-data
65 size: 2Gi
66 path: /opt/app/datartr/spool
67 labels:
68 app.kubernetes.io/component: spool
efiacor4808baa2019-03-11 23:36:05 +000069
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010070 event:
71 enabled: true
72 volumeReclaimPolicy: Retain
73 accessMode: ReadWriteOnce
74 mountSubPath: data-router/dr-node/event-logs
75 path: /opt/app/datartr/logs
76 size: 2Gi
77 labels:
78 app.kubernetes.io/component: event-logs
efiacor4808baa2019-03-11 23:36:05 +000079
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010080job:
81 annotations:
82 "helm.sh/hook": post-install
83 "helm.sh/hook-weight": "-2"
84 "helm.sh/hook-delete-policy": hook-succeeded
Fiachra Corcoranbe966552018-08-07 16:58:45 +010085
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010086#################################################################
87# AAF part
88#################################################################
efiacore62958b2019-09-27 16:54:36 +010089aafConfig:
efiacor6ca697d2020-03-06 16:30:05 +000090 aafDeployFqi: deployer@people.osaaf.org
efiacore62958b2019-09-27 16:54:36 +010091 aafDeployPass: demo123456!
92 fqdn: dmaap-dr-node
93 fqi: dmaap-dr-node@dmaap-dr.onap.org
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010094 public_fqdn: dmaap-dr.onap.org
95 cadi_longitude: 0.0
96 cadi_latitude: 0.0
97 app_ns: org.osaaf.aaf
98 permission_user: 1000
99 permission_group: 1001
100 secret_uid: &aaf_secret_uid dmaap-dr-node-aaf-deploy-creds
101 credsPath: /opt/app/osaaf/local
efiacore62958b2019-09-27 16:54:36 +0100102
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +0100103#################################################################
104# Secrets metaconfig
105#################################################################
106secrets:
107 - uid: *aaf_secret_uid
108 type: basicAuth
109 externalSecret: '{{ ternary (tpl (default "" .Values.aafConfig.aafDeployCredsExternalSecret) .) "aafIsDisabled" .Values.global.aafEnabled }}'
110 login: '{{ .Values.aafConfig.aafDeployFqi }}'
111 password: '{{ .Values.aafConfig.aafDeployPass }}'
112 passwordPolicy: required
efiacore62958b2019-09-27 16:54:36 +0100113
Fiachra Corcoranbe966552018-08-07 16:58:45 +0100114ingress:
115 enabled: false
Lucjan Bryndza554759c2019-11-27 15:02:14 +0100116 service:
117 - baseaddr: "dmaapdrnode"
118 name: "dmaap-dr-node"
119 port: 8443
120 config:
121 ssl: "redirect"
Fiachra Corcoranbe966552018-08-07 16:58:45 +0100122
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000123# Resource Limit flavor -By Default using small
124flavor: small
125# Segregation for Different environment (Small and Large)
126resources:
127 small:
128 limits:
129 cpu: 2000m
130 memory: 4Gi
131 requests:
132 cpu: 500m
133 memory: 1Gi
134 large:
135 limits:
136 cpu: 4000m
137 memory: 8Gi
138 requests:
139 cpu: 1000m
140 memory: 2Gi
Emmett Cox87d9abe2018-11-26 16:57:27 +0000141 unlimited: {}
econwar28266fa2019-03-05 16:39:00 +0000142
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +0100143service:
144 type: NodePort
145 name: dmaap-dr-node
146 useNodePortExt: true
147 annotations:
148 service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
149 ports:
150 - name: api
151 port: 8443
152 plain_port: 8080
153 port_protocol: http
154 nodePort: 94
155
econwar28266fa2019-03-05 16:39:00 +0000156config:
157 # dr node server configuration
158 dmaapDrNode:
efiacor9ef176c2020-02-20 16:50:30 +0000159 # dr uses the EELF Logging framework https://github.com/att/EELF
160 # and supports the following log levels: TRACE, DEBUG, INFO, WARN, ERROR, OFF
161 logLevel: "INFO"