@@ -32,17 +32,18 @@ datadog:
32
32
dataDir : " /var/lib/observability-pipelines-worker"
33
33
workerAPI :
34
34
# datadog.workerAPI.enabled -- Whether to enable the Worker's API.
35
- enabled : false
35
+ enabled : true
36
36
# datadog.workerAPI.playground -- Whether to enable the Worker's API GraphQL playground.
37
- playground : true
37
+ playground : false
38
38
# datadog.workerAPI.address -- Local address to bind the Worker's API to.
39
- address : " 127.0.0.1:8686"
39
+ # if you change this port, you'll need to update the livenessProbe and readinessProbe
40
+ address : " 0.0.0.0:8686"
40
41
41
42
image :
42
43
# image.name -- Specify the image name to use (relative to `image.repository`).
43
44
name : observability-pipelines-worker
44
45
# image.tag -- Specify the image tag to use.
45
- tag : 2.7.0
46
+ tag : 2.7.1
46
47
# image.digest -- (string) Specify the image digest to use; takes precedence over `image.tag`.
47
48
digest :
48
49
# # Currently, we offer images at:
@@ -301,8 +302,28 @@ dnsConfig: {}
301
302
302
303
# livenessProbe -- Specify the livenessProbe
303
304
# [configuration](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes).
304
- livenessProbe : {}
305
+ livenessProbe :
306
+ failureThreshold : 5
307
+ httpGet :
308
+ path : /health
309
+ # if you modify datadog.workerAPI.address to a different port you'll need to update here as well
310
+ port : 8686
311
+ scheme : HTTP
312
+ initialDelaySeconds : 15
313
+ timeoutSeconds : 15
314
+ periodSeconds : 10
315
+ successThreshold : 1
305
316
306
317
# readinessProbe -- Specify the readinessProbe
307
318
# [configuration](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes).
308
- readinessProbe : {}
319
+ readinessProbe :
320
+ failureThreshold : 3
321
+ httpGet :
322
+ path : /health
323
+ # if you modify datadog.workerAPI.address to a different port you'll need to update here as well
324
+ port : 8686
325
+ scheme : HTTP
326
+ initialDelaySeconds : 15
327
+ timeoutSeconds : 15
328
+ periodSeconds : 10
329
+ successThreshold : 1
0 commit comments