-
Notifications
You must be signed in to change notification settings - Fork 3
/
values.yaml
195 lines (163 loc) · 4.71 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
nameOverride: bakdata-streams-app
replicaCount: 1
image: streamsApp
imageTag: latest
imagePullPolicy: Always
imagePullSecrets: []
configurationEnvPrefix: "APP"
files: {}
# log4j2.xml:
# mountPath: app/resources
# content: "foo bar"
resources:
requests:
cpu: 200m
memory: 300Mi
limits:
cpu: 500m
memory: 2G
kafka:
# bootstrapServers: "test:9092"
# schemaRegistryUrl: "url:1234"
staticMembership: false
config: {}
# max.poll.records: 500
# Note that YAML may convert large integers to scientific notation. Use Strings to avoid this.
# max.request.size: "1000000"
inputTopics: []
# - input
# - input2
labeledInputTopics: {}
# label:
# - input
# - input2
# inputPattern: .*-input
labeledInputPatterns: {}
# label: .*-input
# outputTopic: output
labeledOutputTopics: {}
# label: output
# errorTopic: error
# applicationId: foo
commandLine: {}
# MY_CLI_PARAM: "foo-bar"
env: {}
# MY_ENV_VARIABLE: foo-bar
secrets: {}
# MY_SECRET: fo-bar
secretRefs: {}
# MY_SECRET:
# name: secretName
# key: secretKey
secretFilesRefs: []
# - name: my-secret
# volume: secret-volume
# mountPath: /etc/test
# readOnly: true
# subPath: optional-subpath
# Additional ports
ports: []
# # Number of the port to expose
# - containerPort: 8080
# # Optional: Services can reference port by name
# name: http
# # Optional: If not set, kubernetes will use 'TCP'
# protocol: "TCP"
# # The port that will be exposed by the service.
# servicePort: 80
service:
enabled: false
labels: {}
type: "ClusterIP"
# Arbitrary Probe v1 definition: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#probe-v1-core
livenessProbe: {}
# Arbitrary Probe v1 definition: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#probe-v1-core
readinessProbe: {}
## Monitoring
## Kafka Connect JMX Settings
## ref: https://kafka.apache.org/documentation/#connect_monitoring
jmx:
port: 5555
metricRules:
- ".*"
autoscaling:
enabled: false
# lagThreshold: "1000"
pollingInterval: 30
cooldownPeriod: 300
offsetResetPolicy: earliest
minReplicas: 0
maxReplicas: 1
# idleReplicas: 0
## all topics from kafka.inputTopics and kafka.labeledInputTopics are automatically taken
## only use the 'internalTopics' option for adding internal topics, i.e., auto-generated topics by Kafka Streams. Consumer group name will automatically be added as a prefix
internalTopics: []
# - bar-repartition # results in foo-bar-repartition
# - baz-join-subscription-response-topic # results in foo-baz-join-subscription-response-topic
## only use the 'topics' option for adding more topics, e.g., intermediate topics, not covered by `internalTopics`
topics: []
# - bar
# - baz
additionalTriggers: []
# - type: metrics-api
# metadata:
# targetValue: "2"
# url: "http://custom-metrics-api"
# valueLocation: "some.json.path"
# serviceAccountName: foo
tolerations: []
# - key: "foo"
# operator: "Exists"
# effect: "NoSchedule"
# - key: "bar"
# operator: "Exists"
# effect: "NoSchedule"
annotations: {}
# MY_ANNOTATION: "foo-bar"
labels: {}
# MY_LABEL: "foo-bar"
statefulSet: false
javaOptions:
maxRAMPercentage: 75
others: []
# - "-XX:MinRAMPercentage=50.0"
## Prometheus Exporter Configuration
## ref: https://prometheus.io/docs/instrumenting/exporters/
prometheus:
## JMX Exporter Configuration
## ref: https://github.com/prometheus/jmx_exporter
jmx:
enabled: true
image: solsson/kafka-prometheus-jmx-exporter@sha256
imageTag: 6f82e2b0464f50da8104acd7363fb9b995001ddff77d248379f8788e78946143
port: 5556
## Resources configuration for the JMX exporter container.
## See the `resources` documentation above for details.
resources:
requests:
cpu: 100m
memory: 500Mi
limits:
cpu: 300m
memory: 2G
# priorityClass
# priorityClassName: ""
## Affinity for pod assignment (evaluated as template)
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
persistence:
enabled: false
## The size of the PersistentVolume to allocate to each streams pod in the StatefulSet.
size: 1Gi
## Kafka Streams data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: ""
podAnnotations: {}
podLabels: {}
terminationGracePeriodSeconds: 300