Skip to content

Commit 562d8f4

Browse files
[mq] working branch - merge cdf73a1 on top of main at 800574a
{"baseBranch":"main","baseCommit":"800574a7eed5829acc8e629c1eea58b1c9f9b36d","createdAt":"2025-05-06T16:30:57.742842Z","headSha":"cdf73a19553c46812171a9cdc44aeee1df7af8aa","id":"f1d20c27-0f27-4468-bf0d-355a876a3d89","priority":"200","pullRequestNumber":"1854","queuedAt":"2025-05-06T16:30:57.741779Z","status":"STATUS_QUEUED"}
2 parents cbd5749 + cdf73a1 commit 562d8f4

26 files changed

+153
-149
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.112.0
4+
5+
* Upgrade default Agent version to `7.65.0`.
6+
37
## 3.111.1
48

59
* Update `fips.image.tag` to `1.1.10` fixing CVEs and updating packages.

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.111.1
4+
version: 3.112.0
55
appVersion: "7"
66
description: Datadog Agent
77
keywords:

charts/datadog/README.md

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

3-
![Version: 3.111.1](https://img.shields.io/badge/Version-3.111.1-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
3+
![Version: 3.112.0](https://img.shields.io/badge/Version-3.112.0-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

@@ -526,7 +526,7 @@ helm install <RELEASE_NAME> \
526526
| agents.image.pullPolicy | string | `"IfNotPresent"` | Datadog Agent image pull policy |
527527
| agents.image.pullSecrets | list | `[]` | Datadog Agent repository pullSecret (ex: specify docker registry credentials) |
528528
| agents.image.repository | string | `nil` | Override default registry + image.name for Agent |
529-
| agents.image.tag | string | `"7.64.3"` | Define the Agent version to use |
529+
| agents.image.tag | string | `"7.65.0"` | Define the Agent version to use |
530530
| agents.image.tagSuffix | string | `""` | Suffix to append to Agent tag |
531531
| agents.localService.forceLocalServiceEnabled | bool | `false` | Force the creation of the internal traffic policy service to target the agent running on the local node. By default, the internal traffic service is created only on Kubernetes 1.22+ where the feature became beta and enabled by default. This option allows to force the creation of the internal traffic service on kubernetes 1.21 where the feature was alpha and required a feature gate to be explicitly enabled. |
532532
| agents.localService.overrideName | string | `""` | Name of the internal traffic service to target the agent running on the local node |
@@ -610,7 +610,7 @@ helm install <RELEASE_NAME> \
610610
| clusterAgent.image.pullPolicy | string | `"IfNotPresent"` | Cluster Agent image pullPolicy |
611611
| clusterAgent.image.pullSecrets | list | `[]` | Cluster Agent repository pullSecret (ex: specify docker registry credentials) |
612612
| clusterAgent.image.repository | string | `nil` | Override default registry + image.name for Cluster Agent |
613-
| clusterAgent.image.tag | string | `"7.64.3"` | Cluster Agent image tag to use |
613+
| clusterAgent.image.tag | string | `"7.65.0"` | Cluster Agent image tag to use |
614614
| clusterAgent.kubernetesApiserverCheck.disableUseComponentStatus | bool | `false` | Set this to true to disable use_component_status for the kube_apiserver integration. |
615615
| clusterAgent.livenessProbe | object | Every 15s / 6 KO / 1 OK | Override default Cluster Agent liveness probe settings |
616616
| clusterAgent.metricsProvider.aggregator | string | `"avg"` | Define the aggregator the cluster agent will use to process the metrics. The options are (avg, min, max, sum) |
@@ -666,7 +666,7 @@ helm install <RELEASE_NAME> \
666666
| clusterChecksRunner.image.pullPolicy | string | `"IfNotPresent"` | Datadog Agent image pull policy |
667667
| clusterChecksRunner.image.pullSecrets | list | `[]` | Datadog Agent repository pullSecret (ex: specify docker registry credentials) |
668668
| clusterChecksRunner.image.repository | string | `nil` | Override default registry + image.name for Cluster Check Runners |
669-
| clusterChecksRunner.image.tag | string | `"7.64.3"` | Define the Agent version to use |
669+
| clusterChecksRunner.image.tag | string | `"7.65.0"` | Define the Agent version to use |
670670
| clusterChecksRunner.image.tagSuffix | string | `""` | Suffix to append to Agent tag |
671671
| clusterChecksRunner.livenessProbe | object | Every 15s / 6 KO / 1 OK | Override default agent liveness probe settings |
672672
| clusterChecksRunner.networkPolicy.create | bool | `false` | If true, create a NetworkPolicy for the cluster checks runners. DEPRECATED. Use datadog.networkPolicy.create instead |

charts/datadog/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1121,7 +1121,7 @@ clusterAgent:
11211121
name: cluster-agent
11221122

11231123
# clusterAgent.image.tag -- Cluster Agent image tag to use
1124-
tag: 7.64.3
1124+
tag: 7.65.0
11251125

11261126
# clusterAgent.image.digest -- Cluster Agent image digest to use, takes precedence over tag if specified
11271127
digest: ""
@@ -1653,7 +1653,7 @@ agents:
16531653
name: agent
16541654

16551655
# agents.image.tag -- Define the Agent version to use
1656-
tag: 7.64.3
1656+
tag: 7.65.0
16571657

16581658
# agents.image.digest -- Define Agent image digest to use, takes precedence over tag if specified
16591659
digest: ""
@@ -2169,7 +2169,7 @@ clusterChecksRunner:
21692169
name: agent
21702170

21712171
# clusterChecksRunner.image.tag -- Define the Agent version to use
2172-
tag: 7.64.3
2172+
tag: 7.65.0
21732173

21742174
# clusterChecksRunner.image.digest -- Define Agent image digest to use, takes precedence over tag if specified
21752175
digest: ""

test/datadog/baseline/manifests/agent-clusterchecks-deployment_default.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ spec:
888888
value: "true"
889889
- name: DD_KUBERNETES_KUBELET_PODRESOURCES_SOCKET
890890
value: /var/lib/kubelet/pod-resources/kubelet.sock
891-
image: gcr.io/datadoghq/agent:7.64.3
891+
image: gcr.io/datadoghq/agent:7.65.0
892892
imagePullPolicy: IfNotPresent
893893
livenessProbe:
894894
failureThreshold: 6
@@ -1025,7 +1025,7 @@ spec:
10251025
configMapKeyRef:
10261026
key: install_type
10271027
name: datadog-kpi-telemetry-configmap
1028-
image: gcr.io/datadoghq/agent:7.64.3
1028+
image: gcr.io/datadoghq/agent:7.65.0
10291029
imagePullPolicy: IfNotPresent
10301030
livenessProbe:
10311031
initialDelaySeconds: 15
@@ -1074,7 +1074,7 @@ spec:
10741074
command:
10751075
- bash
10761076
- -c
1077-
image: gcr.io/datadoghq/agent:7.64.3
1077+
image: gcr.io/datadoghq/agent:7.65.0
10781078
imagePullPolicy: IfNotPresent
10791079
name: init-volume
10801080
resources: {}
@@ -1109,7 +1109,7 @@ spec:
11091109
fieldPath: status.hostIP
11101110
- name: DD_OTLP_CONFIG_LOGS_ENABLED
11111111
value: "false"
1112-
image: gcr.io/datadoghq/agent:7.64.3
1112+
image: gcr.io/datadoghq/agent:7.65.0
11131113
imagePullPolicy: IfNotPresent
11141114
name: init-config
11151115
resources: {}
@@ -1275,7 +1275,7 @@ spec:
12751275
valueFrom:
12761276
fieldRef:
12771277
fieldPath: spec.nodeName
1278-
image: gcr.io/datadoghq/agent:7.64.3
1278+
image: gcr.io/datadoghq/agent:7.65.0
12791279
imagePullPolicy: IfNotPresent
12801280
livenessProbe:
12811281
failureThreshold: 6
@@ -1324,7 +1324,7 @@ spec:
13241324
command:
13251325
- bash
13261326
- -c
1327-
image: gcr.io/datadoghq/agent:7.64.3
1327+
image: gcr.io/datadoghq/agent:7.65.0
13281328
imagePullPolicy: IfNotPresent
13291329
name: init-volume
13301330
resources: {}
@@ -1337,7 +1337,7 @@ spec:
13371337
command:
13381338
- bash
13391339
- -c
1340-
image: gcr.io/datadoghq/agent:7.64.3
1340+
image: gcr.io/datadoghq/agent:7.65.0
13411341
imagePullPolicy: IfNotPresent
13421342
name: init-config
13431343
resources: {}
@@ -1509,7 +1509,7 @@ spec:
15091509
configMapKeyRef:
15101510
key: install_type
15111511
name: datadog-kpi-telemetry-configmap
1512-
image: gcr.io/datadoghq/cluster-agent:7.64.3
1512+
image: gcr.io/datadoghq/cluster-agent:7.65.0
15131513
imagePullPolicy: IfNotPresent
15141514
livenessProbe:
15151515
failureThreshold: 6
@@ -1582,7 +1582,7 @@ spec:
15821582
command:
15831583
- cp
15841584
- -r
1585-
image: gcr.io/datadoghq/cluster-agent:7.64.3
1585+
image: gcr.io/datadoghq/cluster-agent:7.65.0
15861586
imagePullPolicy: IfNotPresent
15871587
name: init-volume
15881588
volumeMounts:

test/datadog/baseline/manifests/cluster-agent-deployment_default.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ spec:
883883
configMapKeyRef:
884884
key: install_type
885885
name: datadog-kpi-telemetry-configmap
886-
image: gcr.io/datadoghq/cluster-agent:7.64.3
886+
image: gcr.io/datadoghq/cluster-agent:7.65.0
887887
imagePullPolicy: IfNotPresent
888888
livenessProbe:
889889
failureThreshold: 6
@@ -956,7 +956,7 @@ spec:
956956
command:
957957
- cp
958958
- -r
959-
image: gcr.io/datadoghq/cluster-agent:7.64.3
959+
image: gcr.io/datadoghq/cluster-agent:7.65.0
960960
imagePullPolicy: IfNotPresent
961961
name: init-volume
962962
volumeMounts:

test/datadog/baseline/manifests/cluster-agent-deployment_default_advanced_AC_injection.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ spec:
897897
configMapKeyRef:
898898
key: install_type
899899
name: datadog-kpi-telemetry-configmap
900-
image: gcr.io/datadoghq/cluster-agent:7.64.3
900+
image: gcr.io/datadoghq/cluster-agent:7.65.0
901901
imagePullPolicy: IfNotPresent
902902
livenessProbe:
903903
failureThreshold: 6
@@ -970,7 +970,7 @@ spec:
970970
command:
971971
- cp
972972
- -r
973-
image: gcr.io/datadoghq/cluster-agent:7.64.3
973+
image: gcr.io/datadoghq/cluster-agent:7.65.0
974974
imagePullPolicy: IfNotPresent
975975
name: init-volume
976976
volumeMounts:

test/datadog/baseline/manifests/cluster-agent-deployment_default_minimal_AC_injection.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ spec:
830830
- name: DD_ADMISSION_CONTROLLER_AGENT_SIDECAR_IMAGE_NAME
831831
value: agent
832832
- name: DD_ADMISSION_CONTROLLER_AGENT_SIDECAR_IMAGE_TAG
833-
value: 7.64.3
833+
value: 7.65.0
834834
- name: DD_REMOTE_CONFIGURATION_ENABLED
835835
value: "false"
836836
- name: DD_CLUSTER_CHECKS_ENABLED
@@ -893,7 +893,7 @@ spec:
893893
configMapKeyRef:
894894
key: install_type
895895
name: datadog-kpi-telemetry-configmap
896-
image: gcr.io/datadoghq/cluster-agent:7.64.3
896+
image: gcr.io/datadoghq/cluster-agent:7.65.0
897897
imagePullPolicy: IfNotPresent
898898
livenessProbe:
899899
failureThreshold: 6
@@ -966,7 +966,7 @@ spec:
966966
command:
967967
- cp
968968
- -r
969-
image: gcr.io/datadoghq/cluster-agent:7.64.3
969+
image: gcr.io/datadoghq/cluster-agent:7.65.0
970970
imagePullPolicy: IfNotPresent
971971
name: init-volume
972972
volumeMounts:

test/datadog/baseline/manifests/daemonset_default.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ spec:
853853
value: "true"
854854
- name: DD_KUBERNETES_KUBELET_PODRESOURCES_SOCKET
855855
value: /var/lib/kubelet/pod-resources/kubelet.sock
856-
image: gcr.io/datadoghq/agent:7.64.3
856+
image: gcr.io/datadoghq/agent:7.65.0
857857
imagePullPolicy: IfNotPresent
858858
livenessProbe:
859859
failureThreshold: 6
@@ -990,7 +990,7 @@ spec:
990990
configMapKeyRef:
991991
key: install_type
992992
name: datadog-kpi-telemetry-configmap
993-
image: gcr.io/datadoghq/agent:7.64.3
993+
image: gcr.io/datadoghq/agent:7.65.0
994994
imagePullPolicy: IfNotPresent
995995
livenessProbe:
996996
initialDelaySeconds: 15
@@ -1039,7 +1039,7 @@ spec:
10391039
command:
10401040
- bash
10411041
- -c
1042-
image: gcr.io/datadoghq/agent:7.64.3
1042+
image: gcr.io/datadoghq/agent:7.65.0
10431043
imagePullPolicy: IfNotPresent
10441044
name: init-volume
10451045
resources: {}
@@ -1074,7 +1074,7 @@ spec:
10741074
fieldPath: status.hostIP
10751075
- name: DD_OTLP_CONFIG_LOGS_ENABLED
10761076
value: "false"
1077-
image: gcr.io/datadoghq/agent:7.64.3
1077+
image: gcr.io/datadoghq/agent:7.65.0
10781078
imagePullPolicy: IfNotPresent
10791079
name: init-config
10801080
resources: {}
@@ -1293,7 +1293,7 @@ spec:
12931293
configMapKeyRef:
12941294
key: install_type
12951295
name: datadog-kpi-telemetry-configmap
1296-
image: gcr.io/datadoghq/cluster-agent:7.64.3
1296+
image: gcr.io/datadoghq/cluster-agent:7.65.0
12971297
imagePullPolicy: IfNotPresent
12981298
livenessProbe:
12991299
failureThreshold: 6
@@ -1366,7 +1366,7 @@ spec:
13661366
command:
13671367
- cp
13681368
- -r
1369-
image: gcr.io/datadoghq/cluster-agent:7.64.3
1369+
image: gcr.io/datadoghq/cluster-agent:7.65.0
13701370
imagePullPolicy: IfNotPresent
13711371
name: init-volume
13721372
volumeMounts:

test/datadog/baseline/manifests/default_all.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ spec:
853853
value: "true"
854854
- name: DD_KUBERNETES_KUBELET_PODRESOURCES_SOCKET
855855
value: /var/lib/kubelet/pod-resources/kubelet.sock
856-
image: gcr.io/datadoghq/agent:7.64.3
856+
image: gcr.io/datadoghq/agent:7.65.0
857857
imagePullPolicy: IfNotPresent
858858
livenessProbe:
859859
failureThreshold: 6
@@ -990,7 +990,7 @@ spec:
990990
configMapKeyRef:
991991
key: install_type
992992
name: datadog-kpi-telemetry-configmap
993-
image: gcr.io/datadoghq/agent:7.64.3
993+
image: gcr.io/datadoghq/agent:7.65.0
994994
imagePullPolicy: IfNotPresent
995995
livenessProbe:
996996
initialDelaySeconds: 15
@@ -1039,7 +1039,7 @@ spec:
10391039
command:
10401040
- bash
10411041
- -c
1042-
image: gcr.io/datadoghq/agent:7.64.3
1042+
image: gcr.io/datadoghq/agent:7.65.0
10431043
imagePullPolicy: IfNotPresent
10441044
name: init-volume
10451045
resources: {}
@@ -1074,7 +1074,7 @@ spec:
10741074
fieldPath: status.hostIP
10751075
- name: DD_OTLP_CONFIG_LOGS_ENABLED
10761076
value: "false"
1077-
image: gcr.io/datadoghq/agent:7.64.3
1077+
image: gcr.io/datadoghq/agent:7.65.0
10781078
imagePullPolicy: IfNotPresent
10791079
name: init-config
10801080
resources: {}
@@ -1293,7 +1293,7 @@ spec:
12931293
configMapKeyRef:
12941294
key: install_type
12951295
name: datadog-kpi-telemetry-configmap
1296-
image: gcr.io/datadoghq/cluster-agent:7.64.3
1296+
image: gcr.io/datadoghq/cluster-agent:7.65.0
12971297
imagePullPolicy: IfNotPresent
12981298
livenessProbe:
12991299
failureThreshold: 6
@@ -1366,7 +1366,7 @@ spec:
13661366
command:
13671367
- cp
13681368
- -r
1369-
image: gcr.io/datadoghq/cluster-agent:7.64.3
1369+
image: gcr.io/datadoghq/cluster-agent:7.65.0
13701370
imagePullPolicy: IfNotPresent
13711371
name: init-volume
13721372
volumeMounts:

test/datadog/baseline/manifests/default_all_windows.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ spec:
830830
value: /var/lib/kubelet/pod-resources/kubelet.sock
831831
- name: DD_SYSTEM_PROBE_ENABLED
832832
value: "false"
833-
image: gcr.io/datadoghq/agent:7.64.3
833+
image: gcr.io/datadoghq/agent:7.65.0
834834
imagePullPolicy: IfNotPresent
835835
livenessProbe:
836836
failureThreshold: 6
@@ -931,7 +931,7 @@ spec:
931931
value: "false"
932932
- name: DD_ORCHESTRATOR_EXPLORER_ENABLED
933933
value: "true"
934-
image: gcr.io/datadoghq/agent:7.64.3
934+
image: gcr.io/datadoghq/agent:7.65.0
935935
imagePullPolicy: IfNotPresent
936936
name: process-agent
937937
resources: {}
@@ -957,7 +957,7 @@ spec:
957957
command:
958958
- pwsh
959959
- -Command
960-
image: gcr.io/datadoghq/agent:7.64.3
960+
image: gcr.io/datadoghq/agent:7.65.0
961961
imagePullPolicy: IfNotPresent
962962
name: init-volume
963963
resources: {}
@@ -995,7 +995,7 @@ spec:
995995
fieldPath: status.hostIP
996996
- name: DD_OTLP_CONFIG_LOGS_ENABLED
997997
value: "false"
998-
image: gcr.io/datadoghq/agent:7.64.3
998+
image: gcr.io/datadoghq/agent:7.65.0
999999
imagePullPolicy: IfNotPresent
10001000
name: init-config
10011001
resources: {}
@@ -1188,7 +1188,7 @@ spec:
11881188
configMapKeyRef:
11891189
key: install_type
11901190
name: datadog-kpi-telemetry-configmap
1191-
image: gcr.io/datadoghq/cluster-agent:7.64.3
1191+
image: gcr.io/datadoghq/cluster-agent:7.65.0
11921192
imagePullPolicy: IfNotPresent
11931193
livenessProbe:
11941194
failureThreshold: 6
@@ -1261,7 +1261,7 @@ spec:
12611261
command:
12621262
- cp
12631263
- -r
1264-
image: gcr.io/datadoghq/cluster-agent:7.64.3
1264+
image: gcr.io/datadoghq/cluster-agent:7.65.0
12651265
imagePullPolicy: IfNotPresent
12661266
name: init-volume
12671267
volumeMounts:

0 commit comments

Comments
 (0)