-
-
Save mccraigmccraig/8ccbdbfb1abdd4d5e192fcf8ced7b852 to your computer and use it in GitHub Desktop.
This file contains 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/v1alpha1 | |
kind: Kafka | |
metadata: | |
name: yapster-kafka | |
namespace: kafka | |
spec: | |
kafka: | |
replicas: 5 | |
listeners: | |
plain: {} | |
tls: {} | |
config: | |
offsets.topic.replication.factor: 3 | |
transaction.state.log.replication.factor: 3 | |
transaction.state.log.min.isr: 2 | |
# yapster config | |
auto.create.topics.enable: false | |
delete.topics.enable: true | |
group.max.session.timeout.ms: 900000 | |
transaction.max.timeout.ms: 900000 | |
log.retention.hours: 6 | |
log.roll.ms: 1800000 | |
log.retention.bytes: 536870912 | |
log.segment.bytes: 402653184 | |
storage: | |
type: persistent-claim | |
class: gp2 | |
size: 100Gi | |
deleteClaim: false | |
zookeeper: | |
replicas: 3 | |
storage: | |
type: persistent-claim | |
class: gp2 | |
size: 5Gi | |
deleteClaim: false | |
entityOperator: | |
topicOperator: {} | |
userOperator: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment