95422db91a4635ab1bfabb0ab7264e77bf5d88d4
[oom.git] / kubernetes / strimzi / values.yaml
1 # Copyright © 2022 Nordix Foundation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefixExt: 304
20   persistence:
21     mountPath: /dockerdata-nfs
22   ingress:
23     virtualhost:
24       baseurl: &baseurl "simpledemo.onap.org"
25       preaddr: &preaddr ""
26       postaddr: &postaddr ""
27
28 #################################################################
29 # Application configuration defaults.
30 #################################################################
31 replicaCount: 3
32 config:
33   kafkaVersion: 3.4.0
34   authType: simple
35   saslMechanism: &saslMech scram-sha-512
36   kafkaInternalPort: &plainPort 9092
37   strimziKafkaAdminUser: &adminUser strimzi-kafka-admin
38   advertisedHost: kafka-api.simpledemo.onap.org
39   advertizedPortBroker0: &advertizedPortBroker0 9000
40   advertizedPortBroker1: &advertizedPortBroker1 9001
41   advertizedPortBroker2: &advertizedPortBroker2 9002
42
43 persistence:
44   enabled: &pvenabled true
45   mountPath: /dockerdata-nfs
46   kafka:
47     enabled: *pvenabled
48     # default values of 2Gi for dev env.
49     # Production values should be dimensioned according to requirements. ie >= 10Gi
50     size: 2Gi
51     volumeReclaimPolicy: Retain
52     accessMode: ReadWriteOnce
53     mountPath: /dockerdata-nfs
54     mountSubPath: strimzi-kafka/kafka
55   zookeeper:
56     enabled: *pvenabled
57     size: 1Gi
58     volumeReclaimPolicy: Retain
59     accessMode: ReadWriteOnce
60     mountPath: /dockerdata-nfs
61     mountSubPath: strimzi-kafka/zk
62
63 #Pods Service Account
64 serviceAccount:
65   nameOverride: strimzi-kafka
66   roles:
67     - read
68
69 ingress:
70   enabled: false
71   service:
72   - baseaddr: "kafka-bootstrap-api"
73     name: "onap-strimzi-kafka-external-bootstrap"
74     port: 9094
75     protocol: tcp
76     exposedPort: 9010
77     exposedProtocol: TLS
78   - baseaddr: "kafka-api"
79     tcpRoutes:
80     - name: "onap-strimzi-kafka-0"
81       port: 9094
82       exposedPort: *advertizedPortBroker0
83       exposedProtocol: TLS
84     - name: "onap-strimzi-kafka-1"
85       port: 9094
86       exposedPort: *advertizedPortBroker1
87       exposedProtocol: TLS
88     - name: "onap-strimzi-kafka-2"
89       port: 9094
90       exposedPort: *advertizedPortBroker2
91       exposedProtocol: TLS
92
93 # Kafka Exporter for metrics
94 metrics:
95   enabled: false
96   kafkaExporter:
97     enabled: false
98     metricsConfig:
99       type: jmxPrometheusExporter
100     topicRegex: ".*"
101     groupRegex: ".*"
102     resources:
103       requests:
104         cpu: 2
105         memory: 0.6Gi
106       limits:
107         cpu: 5
108         memory: 1.5Gi
109     logging: debug
110     enableSaramaLogging: true
111     readinessProbe:
112       initialDelaySeconds: 15
113       timeoutSeconds: 5
114     livenessProbe:
115       initialDelaySeconds: 15
116       timeoutSeconds: 5
117   podMonitor:
118     # Prometheus pre requisite. Currently an optional addon in the OOM docs
119     enabled: false
120     # default port for strimzi metrics
121     port: "tcp-prometheus"
122     # podMonitor labels for prometheus to pick up the podMonitor
123     # dummy value
124     labels:
125       release: dummy
126     relabelings: []
127     metricRelabelings: []
128
129 cruiseControl:
130 ## Cruise Control provides a Kafka metrics reporter implementation
131 ## once installed into the Kafka brokers, filters and records a wide range of metrics provided by the brokers themselves.
132 ## pre requisite is having 2 or more broker nodes
133   enabled: false
134   metricsConfig:
135     type: jmxPrometheusExporter
136   ## Custom resource for Kafka that can rebalance your cluster
137   # ref. https://strimzi.io/blog/2020/06/15/cruise-control/
138   kafkaRebalance:
139     enabled: false
140
141 ######################
142 #  Component overrides
143 ######################
144 strimzi-kafka-bridge:
145   enabled: true
146   config:
147     saslMechanism: *saslMech
148     kafkaInternalPort: *plainPort
149     strimziKafkaAdminUser: *adminUser