[DMAAP] DMaaP ServiceMesh compatibility
[oom.git] / kubernetes / dmaap / components / message-router / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21
22
23 #################################################################
24 # AAF part
25 #################################################################
26 certInitializer:
27   nameOverride: dmaap-mr-cert-initializer
28   aafDeployFqi: deployer@people.osaaf.org
29   aafDeployPass: demo123456!
30   # aafDeployCredsExternalSecret: some secret
31   fqdn: dmaap-mr
32   fqi: dmaapmr@mr.dmaap.onap.org
33   public_fqdn: mr.dmaap.onap.org
34   cadi_longitude: "-122.26147"
35   cadi_latitude: "37.78187"
36   app_ns: org.osaaf.aaf
37   credsPath: /opt/app/osaaf/local
38   appMountPath: /appl/dmaapMR1/bundleconfig/etc/sysprops
39   fqi_namespace: org.onap.dmaap.mr
40   aaf_add_config: |
41     cd {{ .Values.credsPath }}
42     echo "*** change jks password into shell safe one"
43     export KEYSTORE_PASSWD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w64 | head -n1)
44     keytool -storepasswd -new "${KEYSTORE_PASSWD}" \
45       -storepass "${cadi_keystore_password_jks}" \
46       -keystore {{ .Values.fqi_namespace }}.jks
47     echo "*** set key password as same password as jks keystore password"
48       keytool -keypasswd -new "${KEYSTORE_PASSWD}" \
49         -keystore {{ .Values.fqi_namespace }}.jks \
50         -keypass "${cadi_keystore_password_jks}" \
51         -storepass "${KEYSTORE_PASSWD}" -alias {{ .Values.fqi }}
52     echo "*** store the passwords"
53     echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWD}" > mycreds.prop
54     echo "KEYSTORE_PASSWORD_P12=${cadi_keystore_password_p12}" >> mycreds.prop
55     echo "TRUSTSTORE_PASSWORD=${cadi_truststore_password}" >> mycreds.prop
56     echo "*** give ownership of files to the user"
57     chown -R 1000 .
58
59 #################################################################
60 # Application configuration defaults.
61 #################################################################
62 # application image
63 image: onap/dmaap/dmaap-mr:1.3.2
64 pullPolicy: Always
65
66 kafka:
67   name: message-router-kafka
68   port: 9092
69 zookeeper:
70   name: message-router-zookeeper
71   port: 2181
72
73 # flag to enable debugging - application support required
74 debugEnabled: false
75
76 # application configuration
77 config: {}
78
79 # default number of instances
80 replicaCount: 1
81
82 nodeSelector: {}
83
84 affinity: {}
85
86 # probe configuration parameters
87 liveness:
88   initialDelaySeconds: 10
89   periodSeconds: 10
90   timeoutSeconds: 1
91   successThreshold: 1
92   failureThreshold: 3
93   # necessary to disable liveness probe when setting breakpoints
94   # in debugger so K8s doesn't restart unresponsive container
95   port: api
96   enabled: true
97
98 readiness:
99   initialDelaySeconds: 10
100   periodSeconds: 10
101   timeoutSeconds: 1
102   successThreshold: 1
103   failureThreshold: 3
104   port: api
105
106 startup:
107   initialDelaySeconds: 10
108   periodSeconds: 10
109   timeoutSeconds: 1
110   successThreshold: 1
111   failureThreshold: 70
112   port: api
113
114 service:
115   type: NodePort
116   name: message-router
117   both_tls_and_plain: true
118   msb:
119     - port: 3904
120       url: "/"
121       version: "v1"
122       protocol: "REST"
123       visualRange: "1"
124   ports:
125     - name: api
126       port: 3905
127       plain_port: 3904
128       port_protocol: http
129       nodePort: 26
130
131 prometheus:
132   jmx:
133     enabled: false
134     image: solsson/kafka-prometheus-jmx-exporter@sha256
135     imageTag: 6f82e2b0464f50da8104acd7363fb9b995001ddff77d248379f8788e78946143
136     port: 5556
137     targetPort: 5555
138
139 ingress:
140   enabled: false
141   service:
142     - baseaddr: "mr.api"
143       name: "message-router"
144       port: 3905
145   config:
146     ssl: "redirect"
147
148
149 # Resource Limit flavor -By Default using small
150 flavor: small
151 # Segregation for Different environment (Small and Large)
152 resources:
153   small:
154     limits:
155       cpu: 2000m
156       memory: 4Gi
157     requests:
158       cpu: 500m
159       memory: 1Gi
160   large:
161     limits:
162       cpu: 4000m
163       memory: 8Gi
164     requests:
165       cpu: 1000m
166       memory: 2Gi
167   unlimited: {}
168
169 #Pods Service Account
170 serviceAccount:
171   nameOverride: message-router
172   roles:
173     - read