blob: e6da1d55db159f8cadd4488cec8b7051dffb6262 [file] [log] [blame]
efiacor5c573312022-01-27 13:46:56 +00001# 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#################################################################
18global:
efiacoraf68a7e2022-04-08 10:59:52 +010019 nodePortPrefixExt: 304
efiacor5c573312022-01-27 13:46:56 +000020 persistence:
21 mountPath: /dockerdata-nfs
efiacor5c573312022-01-27 13:46:56 +000022#################################################################
23# Application configuration defaults.
24#################################################################
efiacor1cfa2fb2022-06-01 16:02:39 +010025replicaCount: 3
efiacor57901a92022-11-14 16:17:15 +000026config:
27 kafkaVersion: 3.2.3
28 authType: simple
29 saslMechanism: &saslMech scram-sha-512
30 kafkaInternalPort: &plainPort 9092
31 strimziKafkaAdminUser: &adminUser strimzi-kafka-admin
efiacor5c573312022-01-27 13:46:56 +000032
efiacor57901a92022-11-14 16:17:15 +000033persistence:
34 enabled: &pvenabled true
efiacor5c573312022-01-27 13:46:56 +000035 mountPath: /dockerdata-nfs
efiacor57901a92022-11-14 16:17:15 +000036 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
efiacor5c573312022-01-27 13:46:56 +000052
53#Pods Service Account
54serviceAccount:
55 nameOverride: strimzi-kafka
56 roles:
57 - read
efiacor57901a92022-11-14 16:17:15 +000058
59######################
60# Component overrides
61######################
62strimzi-kafka-bridge:
63 enabled: true
64 config:
65 saslMechanism: *saslMech
66 kafkaInternalPort: *plainPort
67 strimziKafkaAdminUser: *adminUser