blob: b44991bb19b41b5545e0c85d8cfde60a6f483563 [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
efiacorfe8f8c92022-03-15 15:36:48 +00003# Modifications Copyright © 2021-2022 Nordix Foundation
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
pramodad6382f2018-03-28 22:32:00 +000017#################################################################
18# Global configuration defaults.
19#################################################################
20global:
efiacor2123fec2022-12-09 13:40:55 +000021 persistence: {}
Sylvain Desbureauxe5b6ffc2021-02-10 12:11:53 +010022
pramodad6382f2018-03-28 22:32:00 +000023#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
efiacor501c7b62023-04-25 14:52:01 +010027image: onap/dmaap/dmaap-mr:1.4.4
pramodad6382f2018-03-28 22:32:00 +000028pullPolicy: Always
29
efiacor2123fec2022-12-09 13:40:55 +000030#Strimzi zookeeper_tunnel config
31zkTunnelService:
32 type: ClusterIP
33 name: zk-tunnel-svc
34 portName: tcp-zk-tunnel
35 protocol: TCP
36 internalPort: 2181
37 logLevel: debug
38 image: scholzj/zoo-entrance:latest
pramodad6382f2018-03-28 22:32:00 +000039
40nodeSelector: {}
41
42affinity: {}
43
efiacor2123fec2022-12-09 13:40:55 +000044containerPort: &svc_port 3904
45
46service:
47 type: ClusterIP
48 name: message-router
49 ports:
50 - name: api
51 port: *svc_port
52 port_protocol: http
53
54ingress:
55 enabled: false
56 service:
57 - baseaddr: "dmaap-mr-api"
58 name: "message-router"
59 port: *svc_port
60 config:
61 ssl: "redirect"
62
pramodad6382f2018-03-28 22:32:00 +000063# probe configuration parameters
64liveness:
Sylvain Desbureaux8fade992021-12-06 11:33:11 +010065 initialDelaySeconds: 10
pramodad6382f2018-03-28 22:32:00 +000066 periodSeconds: 10
su622b8b763cd2019-10-14 15:37:37 -040067 timeoutSeconds: 1
Sylvain Desbureaux8fade992021-12-06 11:33:11 +010068 successThreshold: 1
69 failureThreshold: 3
pramodad6382f2018-03-28 22:32:00 +000070 # necessary to disable liveness probe when setting breakpoints
71 # in debugger so K8s doesn't restart unresponsive container
efiacor2123fec2022-12-09 13:40:55 +000072 port: *svc_port
pramodad6382f2018-03-28 22:32:00 +000073 enabled: true
74
75readiness:
Sylvain Desbureaux8fade992021-12-06 11:33:11 +010076 initialDelaySeconds: 10
pramodad6382f2018-03-28 22:32:00 +000077 periodSeconds: 10
su622b8b763cd2019-10-14 15:37:37 -040078 timeoutSeconds: 1
Sylvain Desbureaux8fade992021-12-06 11:33:11 +010079 successThreshold: 1
80 failureThreshold: 3
efiacor2123fec2022-12-09 13:40:55 +000081 port: *svc_port
Sylvain Desbureaux8fade992021-12-06 11:33:11 +010082
83startup:
84 initialDelaySeconds: 10
85 periodSeconds: 10
86 timeoutSeconds: 1
87 successThreshold: 1
88 failureThreshold: 70
efiacor2123fec2022-12-09 13:40:55 +000089 port: *svc_port
pramodad6382f2018-03-28 22:32:00 +000090
Prateekinlinux9f5dc042018-09-20 14:08:54 +000091# Resource Limit flavor -By Default using small
92flavor: small
93# Segregation for Different environment (Small and Large)
94resources:
95 small:
96 limits:
97 cpu: 2000m
98 memory: 4Gi
99 requests:
100 cpu: 500m
101 memory: 1Gi
102 large:
103 limits:
104 cpu: 4000m
105 memory: 8Gi
106 requests:
107 cpu: 1000m
108 memory: 2Gi
109 unlimited: {}
farida azmy13388ba2021-03-17 11:33:28 +0200110
111#Pods Service Account
112serviceAccount:
113 nameOverride: message-router
114 roles:
115 - read