blob: ba0b92de2352a4b0f501bac29122c51fc2279fb4 [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
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
pramodad6382f2018-03-28 22:32:00 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
Jerome Douceraind18576b2018-03-17 14:21:42 -040024
pramodad6382f2018-03-28 22:32:00 +000025#################################################################
26# Application configuration defaults.
27#################################################################
28# application image
29repository: nexus3.onap.org:10001
su622ba3865652020-03-25 17:26:51 -040030image: onap/dmaap/dmaap-mr:1.1.18
pramodad6382f2018-03-28 22:32:00 +000031pullPolicy: Always
32
pramodad6382f2018-03-28 22:32:00 +000033kafka:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000034 name: message-router-kafka
35 port: 9092
pramodad6382f2018-03-28 22:32:00 +000036zookeeper:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000037 name: message-router-zookeeper
38 port: 2181
pramodad6382f2018-03-28 22:32:00 +000039
40# flag to enable debugging - application support required
41debugEnabled: false
42
43# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000044config: {}
pramodad6382f2018-03-28 22:32:00 +000045
46# default number of instances
47replicaCount: 1
48
49nodeSelector: {}
50
51affinity: {}
52
53# probe configuration parameters
54liveness:
sunil unnavab96a3912018-12-06 09:50:39 -050055 initialDelaySeconds: 70
pramodad6382f2018-03-28 22:32:00 +000056 periodSeconds: 10
su622b8b763cd2019-10-14 15:37:37 -040057 timeoutSeconds: 1
pramodad6382f2018-03-28 22:32:00 +000058 # necessary to disable liveness probe when setting breakpoints
59 # in debugger so K8s doesn't restart unresponsive container
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010060 port: api
pramodad6382f2018-03-28 22:32:00 +000061 enabled: true
62
63readiness:
sunil unnavab96a3912018-12-06 09:50:39 -050064 initialDelaySeconds: 70
pramodad6382f2018-03-28 22:32:00 +000065 periodSeconds: 10
su622b8b763cd2019-10-14 15:37:37 -040066 timeoutSeconds: 1
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010067 port: api
pramodad6382f2018-03-28 22:32:00 +000068
69service:
70 type: NodePort
71 name: message-router
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010072 both_tls_and_plain: true
73 msb:
gummara72e6de2020-03-12 11:15:56 +000074 - port: 3904
75 url: "/"
76 version: "v1"
77 protocol: "REST"
78 visualRange: "1"
Sylvain Desbureauxbe728882020-03-06 08:58:23 +010079 ports:
80 - name: api
81 port: 3905
82 plain_port: 3904
83 port_protocol: http
84 nodePort: 26
pramodad6382f2018-03-28 22:32:00 +000085
su622ba3865652020-03-25 17:26:51 -040086prometheus:
87 jmx:
88 enabled: false
89 image: solsson/kafka-prometheus-jmx-exporter@sha256
90 imageTag: 6f82e2b0464f50da8104acd7363fb9b995001ddff77d248379f8788e78946143
91 imageRepository: docker.io
92 port: 5556
93 targetPort: 5555
94
pramodad6382f2018-03-28 22:32:00 +000095ingress:
96 enabled: false
Lucjan Bryndza05649652020-04-29 08:52:33 +000097 service:
98 - baseaddr: "mr.api"
99 name: "message-router"
100 port: 3905
101 config:
Sylvain Desbureaux12b18332020-05-06 15:21:31 +0200102 ssl: "redirect"
Lucjan Bryndza05649652020-04-29 08:52:33 +0000103
pramodad6382f2018-03-28 22:32:00 +0000104
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000105# Resource Limit flavor -By Default using small
106flavor: small
107# Segregation for Different environment (Small and Large)
108resources:
109 small:
110 limits:
111 cpu: 2000m
112 memory: 4Gi
113 requests:
114 cpu: 500m
115 memory: 1Gi
116 large:
117 limits:
118 cpu: 4000m
119 memory: 8Gi
120 requests:
121 cpu: 1000m
122 memory: 2Gi
123 unlimited: {}