blob: 01309acfe4f67076db4f97dc0964d676cbc6a258 [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
Fiachra Corcoranbe966552018-08-07 16:58:45 +010020
21#################################################################
22# Application configuration defaults.
23#################################################################
24# application image
efiacore62958b2019-09-27 16:54:36 +010025image: onap/dmaap/datarouter-node:2.1.3
Fiachra Corcoranbe966552018-08-07 16:58:45 +010026pullPolicy: Always
27
28# flag to enable debugging - application support required
29debugEnabled: false
30
31# application configuration - see parent values chart
32
33# default number of instances
34replicaCount: 1
35
36nodeSelector: {}
37
38affinity: {}
39
40# probe configuration parameters
41liveness:
42 initialDelaySeconds: 30
43 periodSeconds: 10
44 # necessary to disable liveness probe when setting breakpoints
45 # in debugger so K8s doesn't restart unresponsive container
46 enabled: true
47
48readiness:
49 initialDelaySeconds: 30
50 periodSeconds: 10
51
52## Persist data to a persitent volume
53persistence:
efiacor4808baa2019-03-11 23:36:05 +000054 volumeReclaimPolicy: Retain
Sylvain Desbureaux18fe1fe2019-08-29 17:30:02 +020055 accessMode: ReadWriteOnce
efiacor4808baa2019-03-11 23:36:05 +000056 mountPath: /dockerdata-nfs
57
58 spoolMountSubPath: data-router/dr-node/spool-data
efiacore62958b2019-09-27 16:54:36 +010059 spoolSize: 2Gi
efiacor4808baa2019-03-11 23:36:05 +000060 spoolPath: /opt/app/datartr/spool
61
62 eventLogsMountSubPath: data-router/dr-node/event-logs
efiacore62958b2019-09-27 16:54:36 +010063 eventLogSize: 2Gi
efiacor4808baa2019-03-11 23:36:05 +000064 eventLogsPath: /opt/app/datartr/logs
Fiachra Corcoranbe966552018-08-07 16:58:45 +010065
efiacore62958b2019-09-27 16:54:36 +010066 aafCredsMountSubPath: data-router/dr-node/aaf-props
67 aafCredsSize: 10M
68 aafCredsPath: /opt/app/osaaf/local
69
70#AAF local config
71aafConfig:
72 aafDeployFqi: dmaap-dr@dmaap-dr.onap.org
73 aafDeployPass: demo123456!
74 fqdn: dmaap-dr-node
75 fqi: dmaap-dr-node@dmaap-dr.onap.org
76 publicFqdn: dmaap-dr.onap.org
77 cadiLatitude: 0.0
78 cadiLongitude: 0.0
79
80
Fiachra Corcoranbe966552018-08-07 16:58:45 +010081ingress:
82 enabled: false
83
Prateekinlinux9f5dc042018-09-20 14:08:54 +000084# Resource Limit flavor -By Default using small
85flavor: small
86# Segregation for Different environment (Small and Large)
87resources:
88 small:
89 limits:
90 cpu: 2000m
91 memory: 4Gi
92 requests:
93 cpu: 500m
94 memory: 1Gi
95 large:
96 limits:
97 cpu: 4000m
98 memory: 8Gi
99 requests:
100 cpu: 1000m
101 memory: 2Gi
Emmett Cox87d9abe2018-11-26 16:57:27 +0000102 unlimited: {}
econwar28266fa2019-03-05 16:39:00 +0000103
104config:
105 # dr node server configuration
106 dmaapDrNode:
efiacor17888832019-05-13 16:36:36 +0000107 servicetype: NodePort
econwar28266fa2019-03-05 16:39:00 +0000108 name: dmaap-dr-node
109 externalPort: 8080
110 externalPort2: 8443
111 internalPort: 8080
112 internalPort2: 8443
113 portName: dr-node-port
114 portName2: dr-node-port2
efiacor17888832019-05-13 16:36:36 +0000115 nodePort: 93
116 nodePort2: 94