-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues.yaml
204 lines (174 loc) · 4.08 KB
/
values.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# Name of service
nameOverride: ""
fullnameOverride: ""
# Number of pods to deploy
replicaCount: 1
# Docker container to deploy
image:
repository: "hypertrace/kafka"
pullPolicy: "IfNotPresent"
tagOverride: ""
imagePullSecrets: []
# Resources granted to pod
resources:
requests:
cpu: "0.1"
memory: "512Mi"
podLabels: {}
podAnnotations: {}
commonPodLabels: {}
commonPodAnnotations: {}
serviceAccount:
create: true
name: ""
updateStrategy:
type: RollingUpdate
podManagementPolicy: OrderedReady
podDisruptionBudget:
enabled: false
maxUnavailable: 1
minAvailable: ""
livenessProbe: {}
readinessProbe:
tcpSocket:
port: 9092
initialDelaySeconds: 10
periodSeconds: 30
timeoutSeconds: 1
terminationGracePeriodSeconds: 60
tolerations: []
nodeSelector: {}
affinity: {}
podSecurityContext: {}
containerSecurityContext: {}
hostNetwork: false
# Persistence volume
volume:
storageClassName: standard
storage: 2Gi
# Set any JVM options like -Xmx or others
javaOpts: "-Xms128M -Xmx400M"
headlessServiceName: ""
# Kafka configuration
config:
autoCreateTopicsEnable: false
compressionType: producer
defaultReplicationFactor: 1
deleteTopicEnable: true
groupInitialRebalanceDelayMs: 30000
interBrokerListenerName: PLAINTEXT
interBrokerProtocolVersion: "3.6"
logCleanerDeleteRetentionMs: "10800000"
logCleanerThreads: ""
logCleanerBackoffMs: ""
logCleanerDedupeBufferSize: ""
logCleanerIoBufferLoadFactor: ""
logCleanerIoBufferSize: ""
logCleanerIoMaxBytesPerSecond: ""
logCleanerMaxCompactionLagMs: ""
logCleanerMinCleanableRatio: "0.25"
logCleanerMinCompactionLagMs: ""
logDirs: /var/lib/kafka/data/topics
logFlushIntervalMessages: ""
logFlushIntervalMs: ""
logRetentionBytes: 1073741824
logRetentionCheckIntervalMs: 300000
logRetentionHours: 24
logRollMs: ""
logSegmentBytes: 1073741824
messageMaxBytes: ""
minInsyncReplicas: 1
numIoThreads: 8
numNetworkThreads: 3
numPartitions: 12
numRecoveryThreadsPerDataDir: 1
offsetsRetentionMinutes: 10080
offsetsTopicReplicationFactor: 1
numReplicaFetchers: 1
replicaFetchBackoffMs: ""
replicaFetchMaxBytes: ""
replicaFetchMinBytes: ""
replicaFetchResponseMaxBytes: ""
replicaFetchWaitMaxMs: ""
replicaHighWatermarkCheckpointIntervalMs: ""
replicaLagTimeMaxMs: ""
replicaSocketReceiveBufferBytes: ""
replicaSocketTimeoutMs: ""
replicationQuotaWindowNum: ""
replicationQuotaWindowSizeSeconds: ""
socketReceiveBufferBytes: 102400
socketRequestMaxBytes: 104857600
socketSendBufferBytes: 102400
transactionStateLogMinIsr: 3
transactionStateLogReplicationFactor: 1
zookeeperConnectOverride: ""
zookeeperConnectionTimeoutMs: 30000
zookeeperSessionTimeoutMs: 30000
# Listeners configuration
listeners:
broker:
enabled: true
port: 9092
service:
port: 9092
type: ClusterIP
annotations: {}
external:
enabled: false
port: 9094
protocol: "EXTERNAL"
# for service type LoadBalancer
hostNamePrefix: ""
domainName: ""
# for service type NodePort
firstNodePort: 31090
advertisedHostName: ""
service:
port: 9094
type: NodePort
loadBalancerSourceRanges: []
annotations: {}
# Monitoring
servicemonitor:
enabled: false
interval: 30s
scrapeTimeout: 20s
secure: false
tlsConfig: {}
# Storage class
storageclass:
enabled: false
name: kafka
annotations: {}
provisioner: kubernetes.io/gce-pd
reclaimPolicy: Delete
volumeBindingMode: Immediate
parameters:
type: pd-standard
# JMX port
jmx:
enabled: false
port: 5557
## Prometheus Exporter Configuration
## ref: https://prometheus.io/docs/instrumenting/exporters/
prometheus:
## JMX Exporter Configuration
## ref: https://github.com/prometheus/jmx_exporter
jmx:
enabled: false
image:
repository: hypertrace/prometheus-jmx-exporter
tag: 0.1.9
pullPolicy: IfNotPresent
port: 5558
resources:
limits:
cpu: "0.5"
memory: "512Mi"
requests:
cpu: "0.1"
memory: "256Mi"
prometheusrule:
enabled: false
annotations: {}
additionalRuleLabels: {}