-
Notifications
You must be signed in to change notification settings - Fork 0
/
kafka-cluster.yaml
59 lines (59 loc) · 1.3 KB
/
kafka-cluster.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
apiVersion: kafka.strimzi.io/v1beta1
kind: Kafka
metadata:
name: kafka-cluster
namespace: kafka
labels:
strimzi.io/cluster: kafka-cluster
spec:
kafka:
config:
socket.send.buffer.bytes: 10240000
socket.receive.buffer.bytes: 10240000
socket.request.max.bytes: 100000012
auto.create.topics.enable: true
offsets.topic.replication.factor: 2
transaction.state.log.min.isr: 1
transaction.state.log.replication.factor: 1
listeners:
plain: {}
tls: {}
livenessProbe:
initialDelaySeconds: 15
timeoutSeconds: 5
readinessProbe:
initialDelaySeconds: 15
timeoutSeconds: 5
replicas: 3
template:
pod:
securityContext:
runAsUser: 0
fsGroup: 0
resources: {}
storage:
deleteClaim: true
size: 10Gi
type: persistent-claim
version: 2.4.1
zookeeper:
livenessProbe:
initialDelaySeconds: 15
timeoutSeconds: 5
readinessProbe:
initialDelaySeconds: 15
timeoutSeconds: 5
template:
pod:
securityContext:
runAsUser: 0
fsGroup: 0
replicas: 1
resources: {}
storage:
deleteClaim: true
size: 8Gi
type: persistent-claim
entityOperator:
topicOperator: {}
userOperator: {}