blob: d0b162b45e30572ef15a410a7064030d465c20d3 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
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
pramodad6382f2018-03-28 22:32:00 +000016#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
Jerome Douceraind18576b2018-03-17 14:21:42 -040021
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +010022
23#################################################################
24# AAF part
25#################################################################
26certInitializer:
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
pramodad6382f2018-03-28 22:32:00 +000059#################################################################
60# Application configuration defaults.
61#################################################################
62# application image
efiacorad7ab172021-04-01 14:41:51 +010063image: onap/dmaap/dmaap-mr:1.1.20
pramodad6382f2018-03-28 22:32:00 +000064pullPolicy: Always
65
pramodad6382f2018-03-28 22:32:00 +000066kafka:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000067 name: message-router-kafka
68 port: 9092
pramodad6382f2018-03-28 22:32:00 +000069zookeeper:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000070 name: message-router-zookeeper
71 port: 2181
pramodad6382f2018-03-28 22:32:00 +000072
73# flag to enable debugging - application support required
74debugEnabled: false
75
76# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000077config: {}
pramodad6382f2018-03-28 22:32:00 +000078
79# default number of instances
80replicaCount: 1
81
82nodeSelector: {}
83
84affinity: {}
85
86# probe configuration parameters
87liveness:
sunil unnavab96a3912018-12-06 09:50:39 -050088 initialDelaySeconds: 70
pramodad6382f2018-03-28 22:32:00 +000089 periodSeconds: 10
su622b8b763cd2019-10-14 15:37:37 -040090 timeoutSeconds: 1
pramodad6382f2018-03-28 22:32:00 +000091 # necessary to disable liveness probe when setting breakpoints
92 # in debugger so K8s doesn't restart unresponsive container
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010093 port: api
pramodad6382f2018-03-28 22:32:00 +000094 enabled: true
95
96readiness:
sunil unnavab96a3912018-12-06 09:50:39 -050097 initialDelaySeconds: 70
pramodad6382f2018-03-28 22:32:00 +000098 periodSeconds: 10
su622b8b763cd2019-10-14 15:37:37 -040099 timeoutSeconds: 1
Sylvain Desbureauxbe728882020-03-06 08:58:23 +0100100 port: api
pramodad6382f2018-03-28 22:32:00 +0000101
102service:
103 type: NodePort
104 name: message-router
Sylvain Desbureauxbe728882020-03-06 08:58:23 +0100105 both_tls_and_plain: true
106 msb:
gummara72e6de2020-03-12 11:15:56 +0000107 - port: 3904
108 url: "/"
109 version: "v1"
110 protocol: "REST"
111 visualRange: "1"
Sylvain Desbureauxbe728882020-03-06 08:58:23 +0100112 ports:
113 - name: api
114 port: 3905
115 plain_port: 3904
116 port_protocol: http
117 nodePort: 26
pramodad6382f2018-03-28 22:32:00 +0000118
su622ba3865652020-03-25 17:26:51 -0400119prometheus:
120 jmx:
121 enabled: false
122 image: solsson/kafka-prometheus-jmx-exporter@sha256
123 imageTag: 6f82e2b0464f50da8104acd7363fb9b995001ddff77d248379f8788e78946143
su622ba3865652020-03-25 17:26:51 -0400124 port: 5556
125 targetPort: 5555
126
pramodad6382f2018-03-28 22:32:00 +0000127ingress:
128 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +0000129 service:
130 - baseaddr: "mr.api"
131 name: "message-router"
132 port: 3905
133 config:
Sylvain Desbureaux12b18332020-05-06 15:21:31 +0200134 ssl: "redirect"
Lucjan Bryndza05649652020-04-29 08:52:33 +0000135
pramodad6382f2018-03-28 22:32:00 +0000136
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000137# Resource Limit flavor -By Default using small
138flavor: small
139# Segregation for Different environment (Small and Large)
140resources:
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: {}