forked from eshepelyuk/cmak-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
99 lines (88 loc) · 2.47 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
imageRegistry: docker.io
# those settings are mirroring CMAK UI preferences.
cmak:
clustersCommon:
curatorConfig:
zkMaxRetry: 100
baseSleepTimeMs: 100
maxSleepTimeMs: 1000
enabled: true
kafkaVersion: "2.2.0"
jmxEnabled: false
jmxUser: null
jmxPass: null
jmxSsl: false
pollConsumers: true
filterConsumers: false
logkafkaEnabled: false
activeOffsetCacheEnabled: true
displaySizeEnabled: false
tuning:
brokerViewUpdatePeriodSeconds: 30
clusterManagerThreadPoolSize: 10
clusterManagerThreadPoolQueueSize: 100
kafkaCommandThreadPoolSize: 10
kafkaCommandThreadPoolQueueSize: 100
logkafkaCommandThreadPoolSize: 10
logkafkaCommandThreadPoolQueueSize: 100
logkafkaUpdatePeriodSeconds: 30
partitionOffsetCacheTimeoutSecs: 5
brokerViewThreadPoolSize: 10
brokerViewThreadPoolQueueSize: 1000
offsetCacheThreadPoolSize: 10
offsetCacheThreadPoolQueueSize: 1000
kafkaAdminClientThreadPoolSize: 10
kafkaAdminClientThreadPoolQueueSize: 1000
kafkaManagedOffsetMetadataCheckMillis: 30000
kafkaManagedOffsetGroupCacheSize: 1000000
kafkaManagedOffsetGroupExpireDays: 7
securityProtocol: PLAINTEXT
saslMechanism: null
jaasConfig: null
clusters: []
reconcile:
schedule: "*/2 * * * *"
overwriteZk: true
successfulJobsHistoryLimit: null
failedJobsHistoryLimit: null
# K8S related settings for CMAK UI container
ui:
port: 9000
# additional command line arguments
extraArgs: []
#- "-DbasicAuthentication.enabled=false"
## resource requests and limits
## http://kubernetes.io/docs/user-guide/compute-resources/
resources:
limits: {}
# cpu: 100m
# memory: 128Mi
requests: {}
# cpu: 100m
# memory: 128Mi
# K8S related settings for Zookeeper container
zk:
## resource requests and limits
## http://kubernetes.io/docs/user-guide/compute-resources/
resources:
limits: {}
# cpu: 100m
# memory: 128Mi
requests: {}
# cpu: 100m
# memory: 128Mi
# uncomment section and remove null to create Ingress resource
ingress:
## ingress host
host: www.cmak.mycompany
## ingress path
path: /
## Enable TLS configuration for the hostname defined at ingress.host
## secret name will be "${ingress.host.replace(".", "-")}"
tls: false
## optional ingress annotations
annotations:
zzz.zzz: "ZZZ.ZZZ"
## optional ingress labels
labels:
qqq.qqq: "QQQ.QQQ"