Merge "DNS add option for display target machine info"
[oom.git] / kubernetes / dmaap / components / dmaap-dr-node / 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 # Global configuration defaults.
17 #################################################################
18 global:
19   loggingDirectory: /var/log/onap/datarouter
20   persistence: {}
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application image
26 image: onap/dmaap/datarouter-node:2.1.5
27 pullPolicy: Always
28
29 # flag to enable debugging - application support required
30 debugEnabled: false
31
32 # application configuration - see parent values chart
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # probe configuration parameters
42 liveness:
43   initialDelaySeconds: 30
44   periodSeconds: 10
45   # necessary to disable liveness probe when setting breakpoints
46   # in debugger so K8s doesn't restart unresponsive container
47   enabled: true
48
49 readiness:
50   initialDelaySeconds: 30
51   periodSeconds: 10
52
53 ## Persist data to a persitent volume
54 persistence:
55   enabled: true
56   volumeReclaimPolicy: Retain
57   accessMode: ReadWriteOnce
58   mountPath: /dockerdata-nfs
59
60   spoolMountSubPath: data-router/dr-node/spool-data
61   spoolSize: 2Gi
62   spoolPath: /opt/app/datartr/spool
63
64   eventLogsMountSubPath: data-router/dr-node/event-logs
65   eventLogSize: 2Gi
66   eventLogsPath: /opt/app/datartr/logs
67
68   aafCredsMountSubPath: data-router/dr-node/aaf-props
69   aafCredsSize: 10M
70   aafCredsPath: /opt/app/osaaf/local
71
72 #AAF local config
73 aafConfig:
74   aafDeployFqi: deployer@people.osaaf.org
75   aafDeployPass: demo123456!
76   fqdn: dmaap-dr-node
77   fqi: dmaap-dr-node@dmaap-dr.onap.org
78   publicFqdn: dmaap-dr.onap.org
79   cadiLatitude: 0.0
80   cadiLongitude: 0.0
81
82
83 ingress:
84   enabled: false
85   service:
86     - baseaddr: "dmaapdrnode"
87       name: "dmaap-dr-node"
88       port: 8443
89   config:
90     ssl: "redirect"
91
92 # Resource Limit flavor -By Default using small
93 flavor: small
94 # Segregation for Different environment (Small and Large)
95 resources:
96   small:
97     limits:
98       cpu: 2000m
99       memory: 4Gi
100     requests:
101       cpu: 500m
102       memory: 1Gi
103   large:
104     limits:
105       cpu: 4000m
106       memory: 8Gi
107     requests:
108       cpu: 1000m
109       memory: 2Gi
110   unlimited: {}
111
112 config:
113   # dr node server configuration
114   dmaapDrNode:
115     servicetype: NodePort
116     name: dmaap-dr-node
117     externalPort: 8080
118     externalPort2: 8443
119     internalPort: 8080
120     internalPort2: 8443
121     portName: dr-node-port
122     portName2: dr-node-port2
123     nodePort: 93
124     nodePort2: 94
125     # dr uses the EELF Logging framework https://github.com/att/EELF
126     # and supports the following log levels: TRACE, DEBUG, INFO, WARN, ERROR, OFF
127     logLevel: "INFO"