Merge "[COMMON] Fix condition equality bashisms"
[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.1.20
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: 70
89   periodSeconds: 10
90   timeoutSeconds: 1
91   # necessary to disable liveness probe when setting breakpoints
92   # in debugger so K8s doesn't restart unresponsive container
93   port: api
94   enabled: true
95
96 readiness:
97   initialDelaySeconds: 70
98   periodSeconds: 10
99   timeoutSeconds: 1
100   port: api
101
102 service:
103   type: NodePort
104   name: message-router
105   both_tls_and_plain: true
106   msb:
107     - port: 3904
108       url: "/"
109       version: "v1"
110       protocol: "REST"
111       visualRange: "1"
112   ports:
113     - name: api
114       port: 3905
115       plain_port: 3904
116       port_protocol: http
117       nodePort: 26
118
119 prometheus:
120   jmx:
121     enabled: false
122     image: solsson/kafka-prometheus-jmx-exporter@sha256
123     imageTag: 6f82e2b0464f50da8104acd7363fb9b995001ddff77d248379f8788e78946143
124     port: 5556
125     targetPort: 5555
126
127 ingress:
128   enabled: false
129   service:
130     - baseaddr: "mr.api"
131       name: "message-router"
132       port: 3905
133   config:
134     ssl: "redirect"
135
136
137 # Resource Limit flavor -By Default using small
138 flavor: small
139 # Segregation for Different environment (Small and Large)
140 resources:
141   small:
142     limits:
143       cpu: 2000m
144       memory: 4Gi
145     requests:
146       cpu: 500m
147       memory: 1Gi
148   large:
149     limits:
150       cpu: 4000m
151       memory: 8Gi
152     requests:
153       cpu: 1000m
154       memory: 2Gi
155   unlimited: {}