Skip to content

Commit 20139db

Browse files
committed
Merge branch 'ckelner/op-k8s-probes' into arun.pidugu/op-k8s-probes
2 parents d60cd03 + 27b4ec9 commit 20139db

File tree

1 file changed

+27
-6
lines changed

1 file changed

+27
-6
lines changed

charts/observability-pipelines-worker/values.yaml

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,18 @@ datadog:
3232
dataDir: "/var/lib/observability-pipelines-worker"
3333
workerAPI:
3434
# datadog.workerAPI.enabled -- Whether to enable the Worker's API.
35-
enabled: false
35+
enabled: true
3636
# datadog.workerAPI.playground -- Whether to enable the Worker's API GraphQL playground.
37-
playground: true
37+
playground: false
3838
# 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"
4041

4142
image:
4243
# image.name -- Specify the image name to use (relative to `image.repository`).
4344
name: observability-pipelines-worker
4445
# image.tag -- Specify the image tag to use.
45-
tag: 2.7.0
46+
tag: 2.7.1
4647
# image.digest -- (string) Specify the image digest to use; takes precedence over `image.tag`.
4748
digest:
4849
## Currently, we offer images at:
@@ -301,8 +302,28 @@ dnsConfig: {}
301302

302303
# livenessProbe -- Specify the livenessProbe
303304
# [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
305316

306317
# readinessProbe -- Specify the readinessProbe
307318
# [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

Comments
 (0)