Created
July 21, 2021 20:57
-
-
Save hguerrero/a37cb75416750b13ff02f313c547d2fa to your computer and use it in GitHub Desktop.
Single node Kafka cluster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: kafka.strimzi.io/v1beta2 | |
kind: Kafka | |
metadata: | |
name: broker | |
spec: | |
kafka: | |
version: 2.8.0 | |
replicas: 1 | |
listeners: | |
- name: plain | |
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 | |
transaction.state.log.min.isr: 1 | |
log.message.format.version: "2.8" | |
inter.broker.protocol.version: "2.8" | |
storage: | |
type: ephemeral | |
zookeeper: | |
replicas: 3 | |
storage: | |
type: ephemeral | |
entityOperator: | |
topicOperator: {} | |
userOperator: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment