e6da1d55db159f8cadd4488cec8b7051dffb6262
[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 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 replicaCount: 3
26 config:
27   kafkaVersion: 3.2.3
28   authType: simple
29   saslMechanism: &saslMech scram-sha-512
30   kafkaInternalPort: &plainPort 9092
31   strimziKafkaAdminUser: &adminUser strimzi-kafka-admin
32
33 persistence:
34   enabled: &pvenabled true
35   mountPath: /dockerdata-nfs
36   kafka:
37     enabled: *pvenabled
38     # default values of 2Gi for dev env.
39     # Production values should be dimensioned according to requirements. ie >= 10Gi
40     size: 2Gi
41     volumeReclaimPolicy: Retain
42     accessMode: ReadWriteOnce
43     mountPath: /dockerdata-nfs
44     mountSubPath: strimzi-kafka/kafka
45   zookeeper:
46     enabled: *pvenabled
47     size: 1Gi
48     volumeReclaimPolicy: Retain
49     accessMode: ReadWriteOnce
50     mountPath: /dockerdata-nfs
51     mountSubPath: strimzi-kafka/zk
52
53 #Pods Service Account
54 serviceAccount:
55   nameOverride: strimzi-kafka
56   roles:
57     - read
58
59 ######################
60 #  Component overrides
61 ######################
62 strimzi-kafka-bridge:
63   enabled: true
64   config:
65     saslMechanism: *saslMech
66     kafkaInternalPort: *plainPort
67     strimziKafkaAdminUser: *adminUser