From 89a5951d03087f730190e0e360cdd93cc9efb5eb Mon Sep 17 00:00:00 2001 From: Simon Ehrenstein <simon.ehrenstein@gmail.com> Date: Mon, 8 Feb 2021 13:41:08 +0100 Subject: [PATCH] Reset kafka and zookeeper config to default values --- execution/infrastructure/kafka/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/execution/infrastructure/kafka/values.yaml b/execution/infrastructure/kafka/values.yaml index d20b04918..d130410d6 100644 --- a/execution/infrastructure/kafka/values.yaml +++ b/execution/infrastructure/kafka/values.yaml @@ -3,7 +3,7 @@ ## ------------------------------------------------------ cp-zookeeper: enabled: true - servers: 1 + servers: 3 image: confluentinc/cp-zookeeper imageTag: 5.4.0 ## Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. @@ -28,7 +28,7 @@ cp-zookeeper: ## ------------------------------------------------------ cp-kafka: enabled: true - brokers: 1 + brokers: 10 image: confluentinc/cp-enterprise-kafka imageTag: 5.4.0 ## Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. @@ -48,7 +48,7 @@ cp-kafka: # cpu: 100m # memory: 128Mi configurationOverrides: - offsets.topic.replication.factor: "1" + # offsets.topic.replication.factor: "3" "message.max.bytes": "134217728" # 128 MB "replica.fetch.max.bytes": "134217728" # 128 MB # "default.replication.factor": 3 -- GitLab