[DMAAP] Remove AAF dependency
[oom.git] / kubernetes / dmaap / components / message-router / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 # Modifications Copyright © 2021-2022 Nordix Foundation
4 #
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
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20 global:
21   persistence: {}
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27 image: onap/dmaap/dmaap-mr:1.4.3
28 pullPolicy: Always
29
30 #Strimzi zookeeper_tunnel config
31 zkTunnelService:
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
39
40 nodeSelector: {}
41
42 affinity: {}
43
44 containerPort: &svc_port 3904
45
46 service:
47   type: ClusterIP
48   name: message-router
49   ports:
50     - name: api
51       port: *svc_port
52       port_protocol: http
53
54 ingress:
55   enabled: false
56   service:
57     - baseaddr: "dmaap-mr-api"
58       name: "message-router"
59       port: *svc_port
60   config:
61     ssl: "redirect"
62
63 # probe configuration parameters
64 liveness:
65   initialDelaySeconds: 10
66   periodSeconds: 10
67   timeoutSeconds: 1
68   successThreshold: 1
69   failureThreshold: 3
70   # necessary to disable liveness probe when setting breakpoints
71   # in debugger so K8s doesn't restart unresponsive container
72   port: *svc_port
73   enabled: true
74
75 readiness:
76   initialDelaySeconds: 10
77   periodSeconds: 10
78   timeoutSeconds: 1
79   successThreshold: 1
80   failureThreshold: 3
81   port: *svc_port
82
83 startup:
84   initialDelaySeconds: 10
85   periodSeconds: 10
86   timeoutSeconds: 1
87   successThreshold: 1
88   failureThreshold: 70
89   port: *svc_port
90
91 # Resource Limit flavor -By Default using small
92 flavor: small
93 # Segregation for Different environment (Small and Large)
94 resources:
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: {}
110
111 #Pods Service Account
112 serviceAccount:
113   nameOverride: message-router
114   roles:
115     - read