From ee750b0d46f3b6febf80034768a71df597828283 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Tue, 3 Oct 2023 09:05:47 +0200 Subject: [PATCH] Strimzi - Blog 1: Switched back to the unchanged example -- DOES NOT WORK See: https://itnext.io/kafka-on-kubernetes-the-strimzi-way-part-1-bdff3e451788 Start with: `kubectl -n juplo apply -f cluster.yaml` --- strimzi-kafka/cluster.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/strimzi-kafka/cluster.yaml b/strimzi-kafka/cluster.yaml index 8e12be7..4eb3248 100644 --- a/strimzi-kafka/cluster.yaml +++ b/strimzi-kafka/cluster.yaml @@ -1,10 +1,10 @@ -apiVersion: kafka.strimzi.io/v1beta2 +apiVersion: kafka.strimzi.io/v1beta1 kind: Kafka metadata: name: juplo spec: kafka: - version: 3.5.1 + version: 2.4.0 replicas: 1 listeners: plain: {} @@ -12,6 +12,7 @@ spec: offsets.topic.replication.factor: 1 transaction.state.log.replication.factor: 1 transaction.state.log.min.isr: 1 + log.message.format.version: "2.4" storage: type: ephemeral zookeeper: -- 2.20.1