From 4306d336c501b1cf71604fb51bb3ba69d4b53b78 Mon Sep 17 00:00:00 2001 From: Philipp Schirmer Date: Fri, 26 Jan 2024 14:45:11 +0100 Subject: [PATCH] Add missing default values for internal topics (#200) --- charts/streams-app/values.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/charts/streams-app/values.yaml b/charts/streams-app/values.yaml index 0309adb6..4455100e 100644 --- a/charts/streams-app/values.yaml +++ b/charts/streams-app/values.yaml @@ -102,8 +102,12 @@ autoscaling: minReplicas: 0 maxReplicas: 1 # idleReplicas: 0 - ## all topics from streams.inputTopics and streams.extraInputTopics are automatically taken, so - ## only use the 'topics' option for adding more topics, e.g., internal topics + ## all topics from streams.inputTopics and streams.extraInputTopics are automatically taken + ## only use the 'internalTopics' option for adding internal topics, i.e., auto-generated topics by Kafka Streams. Consumer group name will automatically be added as a prefix + internalTopics: [] + # - bar-repartition # results in foo-bar-repartition + # - baz-join-subscription-response-topic # results in foo-baz-join-subscription-response-topic + ## only use the 'topics' option for adding more topics, e.g., intermediate topics, not covered by `internalTopics` topics: [] # - bar # - baz