Skip to content

Commit 88b431e

Browse files
authored
Allow datadog.tags to convert the spaces in between the individual tags to underscores (#2254)
* allow datadog.tags to convert the spaces to underscores for individual tags that contain spaces * changed the changelog wording * resolve merge conflicts
1 parent 8a81fa0 commit 88b431e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

charts/datadog/CHANGELOG.md

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

3+
## 3.157.1
4+
5+
* Allow `datadog.tags` to convert the spaces to underscores on individual tags that contain spaces.
6+
37
## 3.157.0
48

59
* Enable Datadog Operator chart dependency ([#2112](https://github.com/DataDog/helm-charts/pull/2112)).

charts/datadog/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
apiVersion: v1
33
name: datadog
4-
version: 3.157.0
4+
version: 3.157.1
55
appVersion: "7"
66
description: Datadog Agent
77
keywords:

charts/datadog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Datadog
22

3-
![Version: 3.157.0](https://img.shields.io/badge/Version-3.157.0-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
3+
![Version: 3.157.1](https://img.shields.io/badge/Version-3.157.1-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/_components-common-env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
{{- end }}
2525
{{- if .Values.datadog.tags }}
2626
- name: DD_TAGS
27-
value: {{ tpl (.Values.datadog.tags | join " " | quote) . }}
27+
value: {{ tpl (.Values.datadog.tags | toJson | quote) . }}
2828
{{- end }}
2929
{{- if .Values.datadog.nodeLabelsAsTags }}
3030
- name: DD_KUBERNETES_NODE_LABELS_AS_TAGS

0 commit comments

Comments
 (0)