Skip to content

Commit 9647d49

Browse files
chore: update charts
- bump version for observability-pipelines-worker to NaN.7.1 (patch-version) - update changelog for observability-pipelines-worker with version NaN.7.1 - update readme for observability-pipelines-worker
1 parent abca705 commit 9647d49

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

charts/observability-pipelines-worker/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## NaN.7.1
4+
5+
* Obs Pipelines: Enable API, add liveness and readiness probes ([#2003](https://github.com/DataDog/helm-charts/pull/2003)).
6+
37
## 2.7.0
48

59
- Official image `2.7.0`

charts/observability-pipelines-worker/Chart.yaml

Lines changed: 1 addition & 1 deletion
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: NaN.7.1
44
description: Observability Pipelines Worker
55
type: application
66
keywords:

charts/observability-pipelines-worker/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Observability Pipelines Worker
22

3-
![Version: 2.7.0](https://img.shields.io/badge/Version-2.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square)
3+
![Version: NaN.7.1](https://img.shields.io/badge/Version-NaN.7.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square)
44

55
## How to use Datadog Helm repository
66

@@ -94,9 +94,9 @@ The command removes all the Kubernetes components associated with the chart and
9494
| datadog.dataDir | string | `"/var/lib/observability-pipelines-worker"` | The data directory for OPW to store runtime data in. |
9595
| datadog.pipelineId | string | `nil` | Specify your Datadog Observability Pipelines pipeline ID |
9696
| datadog.site | string | `"datadoghq.com"` | The [site](https://docs.datadoghq.com/getting_started/site/) of the Datadog intake to send data to. |
97-
| datadog.workerAPI.address | string | `"127.0.0.1:8686"` | Local address to bind the Worker's API to. |
98-
| datadog.workerAPI.enabled | bool | `false` | Whether to enable the Worker's API. |
99-
| datadog.workerAPI.playground | bool | `true` | Whether to enable the Worker's API GraphQL playground. |
97+
| datadog.workerAPI.address | string | `"0.0.0.0:8686"` | Local address to bind the Worker's API to. if you change this port, you'll need to update the livenessProbe and readinessProbe |
98+
| datadog.workerAPI.enabled | bool | `true` | Whether to enable the Worker's API. |
99+
| datadog.workerAPI.playground | bool | `false` | Whether to enable the Worker's API GraphQL playground. |
100100
| dnsConfig | object | `{}` | Specify the [dnsConfig](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config). |
101101
| dnsPolicy | string | `"ClusterFirst"` | Specify the [dnsPolicy](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy). |
102102
| env | list | `[]` | Define environment variables. |
@@ -118,7 +118,7 @@ The command removes all the Kubernetes components associated with the chart and
118118
| ingress.tls | list | `[]` | Configure TLS for the Ingress. |
119119
| initContainers | list | `[]` | Specify initContainers to be added. |
120120
| lifecycle | object | `{}` | Specify lifecycle hooks for Containers. |
121-
| livenessProbe | object | `{}` | Specify the livenessProbe [configuration](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes). |
121+
| livenessProbe | object | `{"failureThreshold":5,"httpGet":{"path":"/health","port":8686,"scheme":"HTTP"},"initialDelaySeconds":15,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":15}` | Specify the livenessProbe [configuration](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes). |
122122
| nameOverride | string | `""` | Override the name of the app. |
123123
| nodeSelector | object | `{}` | Configure [nodeSelector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector). |
124124
| persistence.accessModes | list | `["ReadWriteOnce"]` | Specify the accessModes for PersistentVolumeClaims. |
@@ -137,7 +137,7 @@ The command removes all the Kubernetes components associated with the chart and
137137
| podManagementPolicy | string | `"OrderedReady"` | Specify the [podManagementPolicy](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies). |
138138
| podPriorityClassName | string | `""` | Set the [priorityClassName](https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass). |
139139
| podSecurityContext | object | `{}` | Allows you to overwrite the default [PodSecurityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/). |
140-
| readinessProbe | object | `{}` | Specify the readinessProbe [configuration](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes). |
140+
| readinessProbe | object | `{"failureThreshold":3,"httpGet":{"path":"/health","port":8686,"scheme":"HTTP"},"initialDelaySeconds":15,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":15}` | Specify the readinessProbe [configuration](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes). |
141141
| replicas | int | `1` | Specify the number of replicas to create. |
142142
| resources | object | `{}` | Specify resource requests and limits. |
143143
| securityContext | object | `{}` | Specify securityContext for Containers. |

0 commit comments

Comments
 (0)