From ff0d8a12d44ea416741f8a405af664f54a845580 Mon Sep 17 00:00:00 2001 From: Simon Ehrenstein <simon.ehrenstein@gmail.com> Date: Fri, 18 Feb 2022 15:18:27 +0100 Subject: [PATCH] Add jvm options --- helm/values.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/helm/values.yaml b/helm/values.yaml index 123673469..cd2fe69d5 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -167,12 +167,15 @@ strimzi-kafka-operator: tls: false replicas: 3 config: - message.max.bytes: "134217728" # 128 MB - replica.fetch.max.bytes: "134217728" #128 MB - auto.create.topics.enable: false - log.retention.ms: "7200000" # 2h - metrics.sample.window.ms: "5000" #5s - + "message.max.bytes": "134217728" # 128 MB + "replica.fetch.max.bytes": "134217728" #128 MB + "auto.create.topics.enable": false + "log.retention.ms": "7200000" # 2h + "metrics.sample.window.ms": "5000" #5s + jvmOptions: + "-Xmx": "512M" + "-Xms": "512M" + zookeeper: replicas: 3 -- GitLab