[DMAAP] Update chart with service account
[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   aafEnabled: true
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27 image: onap/dmaap/datarouter-node:2.1.8
28 pullPolicy: Always
29
30 # flag to enable debugging - application support required
31 debugEnabled: false
32
33 # application configuration - see parent values chart
34
35 # default number of instances
36 replicaCount: 1
37
38 nodeSelector: {}
39
40 affinity: {}
41
42 # probe configuration parameters
43 liveness:
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
49   port: api
50
51 readiness:
52   initialDelaySeconds: 30
53   periodSeconds: 10
54   port: api
55
56 ## Persist data to a persitent volume
57 persistence:
58   enabled: true
59   mountPath: /dockerdata-nfs
60   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
69
70   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
79
80 #################################################################
81 # AAF part
82 #################################################################
83 aafConfig:
84   aafDeployFqi: deployer@people.osaaf.org
85   aafDeployPass: demo123456!
86   fqdn: dmaap-dr-node
87   fqi: dmaap-dr-node@dmaap-dr.onap.org
88   public_fqdn: dmaap-dr.onap.org
89   cadi_longitude: 0.0
90   cadi_latitude: 0.0
91   app_ns: org.osaaf.aaf
92   permission_user: 1000
93   permission_group: 1001
94   secret_uid: &aaf_secret_uid dmaap-dr-node-aaf-deploy-creds
95   credsPath: /opt/app/osaaf/local
96
97 #################################################################
98 # Secrets metaconfig
99 #################################################################
100 secrets:
101   - uid: *aaf_secret_uid
102     type: basicAuth
103     externalSecret: '{{ ternary (tpl (default "" .Values.aafConfig.aafDeployCredsExternalSecret) .) "aafIsDisabled" .Values.global.aafEnabled }}'
104     login: '{{ .Values.aafConfig.aafDeployFqi }}'
105     password: '{{ .Values.aafConfig.aafDeployPass }}'
106     passwordPolicy: required
107
108 ingress:
109   enabled: false
110   service:
111     - baseaddr: "dmaapdrnode"
112       name: "dmaap-dr-node"
113       port: 8443
114   config:
115     ssl: "redirect"
116
117 # Resource Limit flavor -By Default using small
118 flavor: small
119 # Segregation for Different environment (Small and Large)
120 resources:
121   small:
122     limits:
123       cpu: 2000m
124       memory: 4Gi
125     requests:
126       cpu: 500m
127       memory: 1Gi
128   large:
129     limits:
130       cpu: 4000m
131       memory: 8Gi
132     requests:
133       cpu: 1000m
134       memory: 2Gi
135   unlimited: {}
136
137 service:
138   type: NodePort
139   name: dmaap-dr-node
140   useNodePortExt: true
141   both_tls_and_plain: true
142   annotations:
143     service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
144   ports:
145     - name: api
146       port: 8443
147       plain_port: 8080
148       port_protocol: http
149       nodePort: 94
150
151 config:
152   # dr node server configuration
153   dmaapDrNode:
154     # dr uses the EELF Logging framework https://github.com/att/EELF
155     # and supports the following log levels: TRACE, DEBUG, INFO, WARN, ERROR, OFF
156     logLevel: "INFO"
157
158 #Pods Service Account
159 serviceAccount:
160   nameOverride: dmaap-dr-node
161   roles:
162     - read