efiacor | 5c57331 | 2022-01-27 13:46:56 +0000 | [diff] [blame] | 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: |
efiacor | af68a7e | 2022-04-08 10:59:52 +0100 | [diff] [blame] | 19 | nodePortPrefixExt: 304 |
efiacor | 5c57331 | 2022-01-27 13:46:56 +0000 | [diff] [blame] | 20 | persistence: |
| 21 | mountPath: /dockerdata-nfs |
efiacor | 5c57331 | 2022-01-27 13:46:56 +0000 | [diff] [blame] | 22 | ################################################################# |
| 23 | # Application configuration defaults. |
| 24 | ################################################################# |
efiacor | 1cfa2fb | 2022-06-01 16:02:39 +0100 | [diff] [blame] | 25 | replicaCount: 3 |
efiacor | 57901a9 | 2022-11-14 16:17:15 +0000 | [diff] [blame^] | 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 |
efiacor | 5c57331 | 2022-01-27 13:46:56 +0000 | [diff] [blame] | 32 | |
efiacor | 57901a9 | 2022-11-14 16:17:15 +0000 | [diff] [blame^] | 33 | persistence: |
| 34 | enabled: &pvenabled true |
efiacor | 5c57331 | 2022-01-27 13:46:56 +0000 | [diff] [blame] | 35 | mountPath: /dockerdata-nfs |
efiacor | 57901a9 | 2022-11-14 16:17:15 +0000 | [diff] [blame^] | 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 |
efiacor | 5c57331 | 2022-01-27 13:46:56 +0000 | [diff] [blame] | 52 | |
| 53 | #Pods Service Account |
| 54 | serviceAccount: |
| 55 | nameOverride: strimzi-kafka |
| 56 | roles: |
| 57 | - read |
efiacor | 57901a9 | 2022-11-14 16:17:15 +0000 | [diff] [blame^] | 58 | |
| 59 | ###################### |
| 60 | # Component overrides |
| 61 | ###################### |
| 62 | strimzi-kafka-bridge: |
| 63 | enabled: true |
| 64 | config: |
| 65 | saslMechanism: *saslMech |
| 66 | kafkaInternalPort: *plainPort |
| 67 | strimziKafkaAdminUser: *adminUser |