From b43644d07693f5b46ad5a42bd6159a80ecd1f147 Mon Sep 17 00:00:00 2001
From: Kai Moritz <kai@juplo.de>
Date: Tue, 3 Oct 2023 09:25:49 +0200
Subject: [PATCH] Strimzi - Blog 1: Aligned example with part 1 from the blog

kubectl -n juplo apply -f cluster.yaml
kubectl -n juplo get configmap
kubectl -n juplo get configmap/strimzi-kafka-0 -o yaml
---
 strimzi-kafka/cluster.yaml | 18 ++----------------
 1 file changed, 2 insertions(+), 16 deletions(-)

diff --git a/strimzi-kafka/cluster.yaml b/strimzi-kafka/cluster.yaml
index 8baf802..e666339 100644
--- a/strimzi-kafka/cluster.yaml
+++ b/strimzi-kafka/cluster.yaml
@@ -11,10 +11,6 @@ spec:
         port: 9092
         type: internal
         tls: false
-      - name: tls
-        port: 9093
-        type: internal
-        tls: true
     config:
       offsets.topic.replication.factor: 1
       transaction.state.log.replication.factor: 1
@@ -23,18 +19,8 @@ spec:
       min.insync.replicas: 1
       inter.broker.protocol.version: "3.5"
     storage:
-      type: jbod
-      volumes:
-      - id: 0
-        type: persistent-claim
-        size: 1Gi
-        deleteClaim: false
+      type: ephemeral
   zookeeper:
     replicas: 1
     storage:
-      type: persistent-claim
-      size: 1Gi
-      deleteClaim: false
-  entityOperator:
-    topicOperator: {}
-    userOperator: {}
+      type: ephemeral
-- 
2.20.1