Skip to content

Commit f78573f

Browse files
committed
Update agent to 7.63.2
1 parent 3edc105 commit f78573f

13 files changed

+47
-43
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.99.0
4+
5+
* Upgrade default Agent version to `7.63.2`.
6+
37
## 3.98.1
48

59
* Fixes bug that causes `DD_KUBERNETES_ANNOTATIONS_AS_TAGS` env var to be incorrectly set to the merged value of `.Values.datadog.kubernetesResourcesLabelsAsTags` and `.Values.datadog.kubernetesResourcesAnnotationsAsTags`.

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.98.1
4+
version: 3.99.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.98.1](https://img.shields.io/badge/Version-3.98.1-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
3+
![Version: 3.99.0](https://img.shields.io/badge/Version-3.99.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

@@ -525,7 +525,7 @@ helm install <RELEASE_NAME> \
525525
| agents.image.pullPolicy | string | `"IfNotPresent"` | Datadog Agent image pull policy |
526526
| agents.image.pullSecrets | list | `[]` | Datadog Agent repository pullSecret (ex: specify docker registry credentials) |
527527
| agents.image.repository | string | `nil` | Override default registry + image.name for Agent |
528-
| agents.image.tag | string | `"7.63.0"` | Define the Agent version to use |
528+
| agents.image.tag | string | `"7.63.2"` | Define the Agent version to use |
529529
| agents.image.tagSuffix | string | `""` | Suffix to append to Agent tag |
530530
| 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. |
531531
| agents.localService.overrideName | string | `""` | Name of the internal traffic service to target the agent running on the local node |
@@ -608,7 +608,7 @@ helm install <RELEASE_NAME> \
608608
| clusterAgent.image.pullPolicy | string | `"IfNotPresent"` | Cluster Agent image pullPolicy |
609609
| clusterAgent.image.pullSecrets | list | `[]` | Cluster Agent repository pullSecret (ex: specify docker registry credentials) |
610610
| clusterAgent.image.repository | string | `nil` | Override default registry + image.name for Cluster Agent |
611-
| clusterAgent.image.tag | string | `"7.63.0"` | Cluster Agent image tag to use |
611+
| clusterAgent.image.tag | string | `"7.63.2"` | Cluster Agent image tag to use |
612612
| clusterAgent.kubernetesApiserverCheck.disableUseComponentStatus | bool | `false` | Set this to true to disable use_component_status for the kube_apiserver integration. |
613613
| clusterAgent.livenessProbe | object | Every 15s / 6 KO / 1 OK | Override default Cluster Agent liveness probe settings |
614614
| clusterAgent.metricsProvider.aggregator | string | `"avg"` | Define the aggregator the cluster agent will use to process the metrics. The options are (avg, min, max, sum) |
@@ -664,7 +664,7 @@ helm install <RELEASE_NAME> \
664664
| clusterChecksRunner.image.pullPolicy | string | `"IfNotPresent"` | Datadog Agent image pull policy |
665665
| clusterChecksRunner.image.pullSecrets | list | `[]` | Datadog Agent repository pullSecret (ex: specify docker registry credentials) |
666666
| clusterChecksRunner.image.repository | string | `nil` | Override default registry + image.name for Cluster Check Runners |
667-
| clusterChecksRunner.image.tag | string | `"7.63.0"` | Define the Agent version to use |
667+
| clusterChecksRunner.image.tag | string | `"7.63.2"` | Define the Agent version to use |
668668
| clusterChecksRunner.image.tagSuffix | string | `""` | Suffix to append to Agent tag |
669669
| clusterChecksRunner.livenessProbe | object | Every 15s / 6 KO / 1 OK | Override default agent liveness probe settings |
670670
| 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
@@ -1042,7 +1042,7 @@ clusterAgent:
10421042
name: cluster-agent
10431043

10441044
# clusterAgent.image.tag -- Cluster Agent image tag to use
1045-
tag: 7.63.0
1045+
tag: 7.63.2
10461046

10471047
# clusterAgent.image.digest -- Cluster Agent image digest to use, takes precedence over tag if specified
10481048
digest: ""
@@ -1566,7 +1566,7 @@ agents:
15661566
name: agent
15671567

15681568
# agents.image.tag -- Define the Agent version to use
1569-
tag: 7.63.0
1569+
tag: 7.63.2
15701570

15711571
# agents.image.digest -- Define Agent image digest to use, takes precedence over tag if specified
15721572
digest: ""
@@ -2075,7 +2075,7 @@ clusterChecksRunner:
20752075
name: agent
20762076

20772077
# clusterChecksRunner.image.tag -- Define the Agent version to use
2078-
tag: 7.63.0
2078+
tag: 7.63.2
20792079

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ spec:
9797
valueFrom:
9898
fieldRef:
9999
fieldPath: spec.nodeName
100-
image: gcr.io/datadoghq/agent:7.63.0
100+
image: gcr.io/datadoghq/agent:7.63.2
101101
imagePullPolicy: IfNotPresent
102102
livenessProbe:
103103
failureThreshold: 6
@@ -146,7 +146,7 @@ spec:
146146
command:
147147
- bash
148148
- -c
149-
image: gcr.io/datadoghq/agent:7.63.0
149+
image: gcr.io/datadoghq/agent:7.63.2
150150
imagePullPolicy: IfNotPresent
151151
name: init-volume
152152
resources: {}
@@ -159,7 +159,7 @@ spec:
159159
command:
160160
- bash
161161
- -c
162-
image: gcr.io/datadoghq/agent:7.63.0
162+
image: gcr.io/datadoghq/agent:7.63.2
163163
imagePullPolicy: IfNotPresent
164164
name: init-config
165165
resources: {}

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ spec:
150150
configMapKeyRef:
151151
key: install_type
152152
name: datadog-kpi-telemetry-configmap
153-
image: gcr.io/datadoghq/cluster-agent:7.63.0
153+
image: gcr.io/datadoghq/cluster-agent:7.63.2
154154
imagePullPolicy: IfNotPresent
155155
livenessProbe:
156156
failureThreshold: 6
@@ -223,7 +223,7 @@ spec:
223223
command:
224224
- cp
225225
- -r
226-
image: gcr.io/datadoghq/cluster-agent:7.63.0
226+
image: gcr.io/datadoghq/cluster-agent:7.63.2
227227
imagePullPolicy: IfNotPresent
228228
name: init-volume
229229
volumeMounts:

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ spec:
164164
configMapKeyRef:
165165
key: install_type
166166
name: datadog-kpi-telemetry-configmap
167-
image: gcr.io/datadoghq/cluster-agent:7.63.0
167+
image: gcr.io/datadoghq/cluster-agent:7.63.2
168168
imagePullPolicy: IfNotPresent
169169
livenessProbe:
170170
failureThreshold: 6
@@ -237,7 +237,7 @@ spec:
237237
command:
238238
- cp
239239
- -r
240-
image: gcr.io/datadoghq/cluster-agent:7.63.0
240+
image: gcr.io/datadoghq/cluster-agent:7.63.2
241241
imagePullPolicy: IfNotPresent
242242
name: init-volume
243243
volumeMounts:

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ spec:
9797
- name: DD_ADMISSION_CONTROLLER_AGENT_SIDECAR_IMAGE_NAME
9898
value: agent
9999
- name: DD_ADMISSION_CONTROLLER_AGENT_SIDECAR_IMAGE_TAG
100-
value: 7.63.0
100+
value: 7.63.2
101101
- name: DD_REMOTE_CONFIGURATION_ENABLED
102102
value: "false"
103103
- name: DD_CLUSTER_CHECKS_ENABLED
@@ -160,7 +160,7 @@ spec:
160160
configMapKeyRef:
161161
key: install_type
162162
name: datadog-kpi-telemetry-configmap
163-
image: gcr.io/datadoghq/cluster-agent:7.63.0
163+
image: gcr.io/datadoghq/cluster-agent:7.63.2
164164
imagePullPolicy: IfNotPresent
165165
livenessProbe:
166166
failureThreshold: 6
@@ -233,7 +233,7 @@ spec:
233233
command:
234234
- cp
235235
- -r
236-
image: gcr.io/datadoghq/cluster-agent:7.63.0
236+
image: gcr.io/datadoghq/cluster-agent:7.63.2
237237
imagePullPolicy: IfNotPresent
238238
name: init-volume
239239
volumeMounts:

test/datadog/baseline/daemonset_default.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ spec:
111111
value: "true"
112112
- name: DD_KUBELET_CORE_CHECK_ENABLED
113113
value: "true"
114-
image: gcr.io/datadoghq/agent:7.63.0
114+
image: gcr.io/datadoghq/agent:7.63.2
115115
imagePullPolicy: IfNotPresent
116116
livenessProbe:
117117
failureThreshold: 6
@@ -248,7 +248,7 @@ spec:
248248
configMapKeyRef:
249249
key: install_type
250250
name: datadog-kpi-telemetry-configmap
251-
image: gcr.io/datadoghq/agent:7.63.0
251+
image: gcr.io/datadoghq/agent:7.63.2
252252
imagePullPolicy: IfNotPresent
253253
livenessProbe:
254254
initialDelaySeconds: 15
@@ -297,7 +297,7 @@ spec:
297297
command:
298298
- bash
299299
- -c
300-
image: gcr.io/datadoghq/agent:7.63.0
300+
image: gcr.io/datadoghq/agent:7.63.2
301301
imagePullPolicy: IfNotPresent
302302
name: init-volume
303303
resources: {}
@@ -332,7 +332,7 @@ spec:
332332
fieldPath: status.hostIP
333333
- name: DD_OTLP_CONFIG_LOGS_ENABLED
334334
value: "false"
335-
image: gcr.io/datadoghq/agent:7.63.0
335+
image: gcr.io/datadoghq/agent:7.63.2
336336
imagePullPolicy: IfNotPresent
337337
name: init-config
338338
resources: {}

test/datadog/baseline/default_all.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ spec:
816816
value: "true"
817817
- name: DD_KUBELET_CORE_CHECK_ENABLED
818818
value: "true"
819-
image: gcr.io/datadoghq/agent:7.63.0
819+
image: gcr.io/datadoghq/agent:7.63.2
820820
imagePullPolicy: IfNotPresent
821821
livenessProbe:
822822
failureThreshold: 6
@@ -953,7 +953,7 @@ spec:
953953
configMapKeyRef:
954954
key: install_type
955955
name: datadog-kpi-telemetry-configmap
956-
image: gcr.io/datadoghq/agent:7.63.0
956+
image: gcr.io/datadoghq/agent:7.63.2
957957
imagePullPolicy: IfNotPresent
958958
livenessProbe:
959959
initialDelaySeconds: 15
@@ -1002,7 +1002,7 @@ spec:
10021002
command:
10031003
- bash
10041004
- -c
1005-
image: gcr.io/datadoghq/agent:7.63.0
1005+
image: gcr.io/datadoghq/agent:7.63.2
10061006
imagePullPolicy: IfNotPresent
10071007
name: init-volume
10081008
resources: {}
@@ -1037,7 +1037,7 @@ spec:
10371037
fieldPath: status.hostIP
10381038
- name: DD_OTLP_CONFIG_LOGS_ENABLED
10391039
value: "false"
1040-
image: gcr.io/datadoghq/agent:7.63.0
1040+
image: gcr.io/datadoghq/agent:7.63.2
10411041
imagePullPolicy: IfNotPresent
10421042
name: init-config
10431043
resources: {}
@@ -1256,7 +1256,7 @@ spec:
12561256
configMapKeyRef:
12571257
key: install_type
12581258
name: datadog-kpi-telemetry-configmap
1259-
image: gcr.io/datadoghq/cluster-agent:7.63.0
1259+
image: gcr.io/datadoghq/cluster-agent:7.63.2
12601260
imagePullPolicy: IfNotPresent
12611261
livenessProbe:
12621262
failureThreshold: 6
@@ -1329,7 +1329,7 @@ spec:
13291329
command:
13301330
- cp
13311331
- -r
1332-
image: gcr.io/datadoghq/cluster-agent:7.63.0
1332+
image: gcr.io/datadoghq/cluster-agent:7.63.2
13331333
imagePullPolicy: IfNotPresent
13341334
name: init-volume
13351335
volumeMounts:

test/datadog/baseline/gdc_daemonset_default.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ spec:
114114
value: "true"
115115
- name: DD_KUBELET_CORE_CHECK_ENABLED
116116
value: "true"
117-
image: gcr.io/datadoghq/agent:7.63.0
117+
image: gcr.io/datadoghq/agent:7.63.2
118118
imagePullPolicy: IfNotPresent
119119
livenessProbe:
120120
failureThreshold: 6
@@ -177,7 +177,7 @@ spec:
177177
command:
178178
- bash
179179
- -c
180-
image: gcr.io/datadoghq/agent:7.63.0
180+
image: gcr.io/datadoghq/agent:7.63.2
181181
imagePullPolicy: IfNotPresent
182182
name: init-volume
183183
resources: {}
@@ -225,7 +225,7 @@ spec:
225225
value: "false"
226226
- name: DD_PROVIDER_KIND
227227
value: gke-gdc
228-
image: gcr.io/datadoghq/agent:7.63.0
228+
image: gcr.io/datadoghq/agent:7.63.2
229229
imagePullPolicy: IfNotPresent
230230
name: init-config
231231
resources: {}

test/datadog/baseline/gdc_daemonset_logs_collection.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ spec:
114114
value: "true"
115115
- name: DD_KUBELET_CORE_CHECK_ENABLED
116116
value: "true"
117-
image: gcr.io/datadoghq/agent:7.63.0
117+
image: gcr.io/datadoghq/agent:7.63.2
118118
imagePullPolicy: IfNotPresent
119119
livenessProbe:
120120
failureThreshold: 6
@@ -189,7 +189,7 @@ spec:
189189
command:
190190
- bash
191191
- -c
192-
image: gcr.io/datadoghq/agent:7.63.0
192+
image: gcr.io/datadoghq/agent:7.63.2
193193
imagePullPolicy: IfNotPresent
194194
name: init-volume
195195
resources: {}
@@ -237,7 +237,7 @@ spec:
237237
value: "false"
238238
- name: DD_PROVIDER_KIND
239239
value: gke-gdc
240-
image: gcr.io/datadoghq/agent:7.63.0
240+
image: gcr.io/datadoghq/agent:7.63.2
241241
imagePullPolicy: IfNotPresent
242242
name: init-config
243243
resources: {}

test/datadog/baseline/other_default.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ spec:
883883
value: "true"
884884
- name: DD_KUBELET_CORE_CHECK_ENABLED
885885
value: "true"
886-
image: gcr.io/datadoghq/agent:7.63.0
886+
image: gcr.io/datadoghq/agent:7.63.2
887887
imagePullPolicy: IfNotPresent
888888
livenessProbe:
889889
failureThreshold: 6
@@ -1020,7 +1020,7 @@ spec:
10201020
configMapKeyRef:
10211021
key: install_type
10221022
name: datadog-kpi-telemetry-configmap
1023-
image: gcr.io/datadoghq/agent:7.63.0
1023+
image: gcr.io/datadoghq/agent:7.63.2
10241024
imagePullPolicy: IfNotPresent
10251025
livenessProbe:
10261026
initialDelaySeconds: 15
@@ -1069,7 +1069,7 @@ spec:
10691069
command:
10701070
- bash
10711071
- -c
1072-
image: gcr.io/datadoghq/agent:7.63.0
1072+
image: gcr.io/datadoghq/agent:7.63.2
10731073
imagePullPolicy: IfNotPresent
10741074
name: init-volume
10751075
resources: {}
@@ -1104,7 +1104,7 @@ spec:
11041104
fieldPath: status.hostIP
11051105
- name: DD_OTLP_CONFIG_LOGS_ENABLED
11061106
value: "false"
1107-
image: gcr.io/datadoghq/agent:7.63.0
1107+
image: gcr.io/datadoghq/agent:7.63.2
11081108
imagePullPolicy: IfNotPresent
11091109
name: init-config
11101110
resources: {}
@@ -1270,7 +1270,7 @@ spec:
12701270
valueFrom:
12711271
fieldRef:
12721272
fieldPath: spec.nodeName
1273-
image: gcr.io/datadoghq/agent:7.63.0
1273+
image: gcr.io/datadoghq/agent:7.63.2
12741274
imagePullPolicy: IfNotPresent
12751275
livenessProbe:
12761276
failureThreshold: 6
@@ -1319,7 +1319,7 @@ spec:
13191319
command:
13201320
- bash
13211321
- -c
1322-
image: gcr.io/datadoghq/agent:7.63.0
1322+
image: gcr.io/datadoghq/agent:7.63.2
13231323
imagePullPolicy: IfNotPresent
13241324
name: init-volume
13251325
resources: {}
@@ -1332,7 +1332,7 @@ spec:
13321332
command:
13331333
- bash
13341334
- -c
1335-
image: gcr.io/datadoghq/agent:7.63.0
1335+
image: gcr.io/datadoghq/agent:7.63.2
13361336
imagePullPolicy: IfNotPresent
13371337
name: init-config
13381338
resources: {}
@@ -1504,7 +1504,7 @@ spec:
15041504
configMapKeyRef:
15051505
key: install_type
15061506
name: datadog-kpi-telemetry-configmap
1507-
image: gcr.io/datadoghq/cluster-agent:7.63.0
1507+
image: gcr.io/datadoghq/cluster-agent:7.63.2
15081508
imagePullPolicy: IfNotPresent
15091509
livenessProbe:
15101510
failureThreshold: 6
@@ -1577,7 +1577,7 @@ spec:
15771577
command:
15781578
- cp
15791579
- -r
1580-
image: gcr.io/datadoghq/cluster-agent:7.63.0
1580+
image: gcr.io/datadoghq/cluster-agent:7.63.2
15811581
imagePullPolicy: IfNotPresent
15821582
name: init-volume
15831583
volumeMounts:

0 commit comments

Comments
 (0)