Skip to content

Commit

Permalink
Add missing default values for internal topics (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 authored Jan 26, 2024
1 parent 0df64d8 commit 4306d33
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions charts/streams-app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4306d33

Please sign in to comment.