Skip to content

Commit 1a9b14f

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

File tree

2 files changed

+28
-7
lines changed

2 files changed

+28
-7
lines changed

charts/observability-pipelines-worker/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: observability-pipelines-worker
3-
version: "2.7.0"
3+
version: "2.7.1"
44
description: Observability Pipelines Worker
55
type: application
66
keywords:
@@ -13,7 +13,7 @@ icon: https://datadog-live.imgix.net/img/dd_logo_70x75.png
1313
maintainers:
1414
- name: Datadog
1515
16-
appVersion: "2.7.0"
16+
appVersion: "2.7.1"
1717
annotations:
1818
artifacthub.io/links: |
1919
- name: Chart Source

charts/observability-pipelines-worker/values.yaml

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,12 @@ 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`).
@@ -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)