From d69952a36d959ee10d0ab7e006efda3b2487079c Mon Sep 17 00:00:00 2001 From: blazSmehov Date: Wed, 3 Dec 2025 09:03:27 +0100 Subject: [PATCH] chore: add settings topic to init script --- build/init-scripts/create_topic.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build/init-scripts/create_topic.sh b/build/init-scripts/create_topic.sh index 8a14d50..bc764a1 100755 --- a/build/init-scripts/create_topic.sh +++ b/build/init-scripts/create_topic.sh @@ -15,7 +15,12 @@ --create --if-not-exists --topic alertbeacons \ --partitions 1 --replication-factor 1 -# create topic alertBeacons +# create topic locevents /opt/kafka/bin/kafka-topics.sh --bootstrap-server kafka:29092 \ --create --if-not-exists --topic locevents \ +--partitions 1 --replication-factor 1 + +# create topic settings +/opt/kafka/bin/kafka-topics.sh --bootstrap-server kafka:29092 \ +--create --if-not-exists --topic settings \ --partitions 1 --replication-factor 1 \ No newline at end of file