Skip to content

Commit 8b54751

Browse files
committed
fix(datadog): propagate datadog.site option to the otelCollector config
1 parent 406d5f0 commit 8b54751

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

charts/datadog/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Datadog changelog
22

3+
## 3.84.4
4+
5+
* Propagate the `datadog.site` option to the default `datadog.otelCollector` configuration.
6+
37
## 3.84.3
48

59
* Added the configuration value `clusterAgent.admissionController.kubernetes_admission_events.enabled` to enabled/disable the Kubernetes Admission Events feature.

charts/datadog/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
apiVersion: v1
33
name: datadog
4-
version: 3.84.2
4+
version: 3.84.4
55
appVersion: "7"
66
description: Datadog Agent
77
keywords:

charts/datadog/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Datadog
22

3-
![Version: 3.84.2](https://img.shields.io/badge/Version-3.84.2-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
3+
![Version: 3.84.4](https://img.shields.io/badge/Version-3.84.4-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
44

55
[Datadog](https://www.datadoghq.com/) is a hosted infrastructure monitoring platform. This chart adds the Datadog Agent to all nodes in your cluster via a DaemonSet. It also optionally depends on the [kube-state-metrics chart](https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-state-metrics). For more information about monitoring Kubernetes with Datadog, please refer to the [Datadog documentation website](https://docs.datadoghq.com/agent/basic_agent_usage/kubernetes/).
66

charts/datadog/templates/_otel_agent_config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ otel-config.yaml: {{- if .Values.datadog.otelCollector.config }} {{ toYaml .Valu
2121
datadog:
2222
api:
2323
key: ${env:DD_API_KEY}
24+
site: {{ .Values.datadog.site | default "" | quote }}
2425
processors:
2526
infraattributes:
2627
cardinality: 2

0 commit comments

Comments
 (0)