first commit

This commit is contained in:
Hoang Nguyen
2026-05-05 22:30:30 +02:00
commit 09a368b484
9 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
apiVersion: kafka.strimzi.io/v1beta2
kind: Kafka
metadata:
name: dev-cluster
namespace: kafka
spec:
kafka:
version: 3.6.1
replicas: 1
listeners:
- name: plain
port: 9092
type: internal
tls: false
config:
offsets.topic.replication.factor: 1
transaction.state.log.replication.factor: 1
transaction.state.log.min.isr: 1
storage:
type: ephemeral
zookeeper:
replicas: 1
storage:
type: ephemeral
---
apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaTopic
metadata:
name: dev-topic
labels:
strimzi.io/cluster: dev-cluster
spec:
partitions: 1
replicas: 1
---
apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaUser
metadata:
name: dev-user
labels:
strimzi.io/cluster: dev-cluster
spec:
authentication:
type: scram-sha-512