Skip to content

Commit 1c2fee6

Browse files
committed
Fix number of schema topic partitions - needs to be 1.
1 parent c5e758e commit 1c2fee6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

charts/radar-kafka/templates/topics-schema-registry.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ metadata:
99
labels:
1010
strimzi.io/cluster: {{ template "common.names.fullname" . }}
1111
spec:
12-
partitions: {{ $context.partitions }}
12+
# IMPORTANT: do not change, According to https://stackoverflow.com/a/74777178 schema topic should not have more than 1 partition
13+
partitions: 1
1314
replicas: {{ $topicReplicationFactor }}
1415
config:
1516
{{- toYaml $context.config | nindent 4 }}

charts/radar-kafka/values.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ schema-registry:
9191
- '{{ $.Values.server_name }}'
9292

9393
topic:
94-
partitions: 1
9594
replicationFactor: 3
9695
config:
9796
cleanup.policy: compact

0 commit comments

Comments
 (0)