Skip to content

Commit 8c58559

Browse files
Update default Agent version to 7.78.1 and update CSI default tag to 1.2.2 (#2939) (#2941)
Update default Agent version to 7.78.1 and update CSI default tag to 1.2.2 Do not use default image docstring in CRD Merge branch 'main' into tbavelier/default-agent-7.78.1 (cherry picked from commit d5f00bf) Co-authored-by: Timothée Bavelier <97530782+tbavelier@users.noreply.github.com> Co-authored-by: timothee.bavelier <timothee.bavelier@datadoghq.com>
1 parent 75232bf commit 8c58559

5 files changed

Lines changed: 10 additions & 16 deletions

File tree

api/datadoghq/v1alpha1/datadogcsidriver_types.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,10 @@ const (
2323
// +k8s:openapi-gen=true
2424
type DatadogCSIDriverSpec struct {
2525
// CSIDriverImage is the image configuration for the main CSI node driver container.
26-
// Default image: gcr.io/datadoghq/csi-driver:1.2.1
2726
// +optional
2827
CSIDriverImage *v2alpha1.AgentImageConfig `json:"csiDriverImage,omitempty"`
2928

3029
// RegistrarImage is the image configuration for the CSI node driver registrar sidecar.
31-
// Default image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.0.1
3230
// +optional
3331
RegistrarImage *v2alpha1.AgentImageConfig `json:"registrarImage,omitempty"`
3432

api/datadoghq/v1alpha1/zz_generated.openapi.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/bases/v1/datadoghq.com_datadogcsidrivers.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ spec:
5454
Default: /var/run/datadog/apm.socket
5555
type: string
5656
csiDriverImage:
57-
description: |-
58-
CSIDriverImage is the image configuration for the main CSI node driver container.
59-
Default image: gcr.io/datadoghq/csi-driver:1.2.1
57+
description: CSIDriverImage is the image configuration for the main CSI node driver container.
6058
properties:
6159
jmxEnabled:
6260
description: |-
@@ -4325,9 +4323,7 @@ spec:
43254323
x-kubernetes-list-type: map
43264324
type: object
43274325
registrarImage:
4328-
description: |-
4329-
RegistrarImage is the image configuration for the CSI node driver registrar sidecar.
4330-
Default image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.0.1
4326+
description: RegistrarImage is the image configuration for the CSI node driver registrar sidecar.
43314327
properties:
43324328
jmxEnabled:
43334329
description: |-

config/crd/bases/v1/datadoghq.com_datadogcsidrivers_v1alpha1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"csiDriverImage": {
2525
"additionalProperties": false,
26-
"description": "CSIDriverImage is the image configuration for the main CSI node driver container.\nDefault image: gcr.io/datadoghq/csi-driver:1.2.1",
26+
"description": "CSIDriverImage is the image configuration for the main CSI node driver container.",
2727
"properties": {
2828
"jmxEnabled": {
2929
"description": "Define whether the Agent image should support JMX.\nTo be used if the `Name` field does not correspond to a full image string.",
@@ -3855,7 +3855,7 @@
38553855
},
38563856
"registrarImage": {
38573857
"additionalProperties": false,
3858-
"description": "RegistrarImage is the image configuration for the CSI node driver registrar sidecar.\nDefault image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.0.1",
3858+
"description": "RegistrarImage is the image configuration for the CSI node driver registrar sidecar.",
38593859
"properties": {
38603860
"jmxEnabled": {
38613861
"description": "Define whether the Agent image should support JMX.\nTo be used if the `Name` field does not correspond to a full image string.",

pkg/images/images.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ import (
1616

1717
const (
1818
// AgentLatestVersion corresponds to the latest stable agent release
19-
AgentLatestVersion = "7.77.2"
19+
AgentLatestVersion = "7.78.1"
2020
// ClusterAgentLatestVersion corresponds to the latest stable cluster-agent release
21-
ClusterAgentLatestVersion = "7.77.2"
21+
ClusterAgentLatestVersion = "7.78.1"
2222
// DdotCollectorLatestVersion corresponds to the latest stable ddot-collector release
23-
DdotCollectorLatestVersion = "7.77.2"
23+
DdotCollectorLatestVersion = "7.78.1"
2424
// FIPSProxyLatestVersion corresponds to the latest stable fips-proxy release
2525
FIPSProxyLatestVersion = "1.1.21"
2626
// DDOTFIPSMinimumVersion is the minimum version at which ddot-collector publishes a -fips variant.
2727
// Note: the regular agent -fips image predates this; this constant only applies to ddot-collector.
2828
// Add "-0" so that pre-release versions are considered sufficient. https://github.com/Masterminds/semver#working-with-prerelease-versions
2929
DDOTFIPSMinimumVersion = "7.78.0-0"
3030
// CSILatestImageVersion corresponds to the latest stable Datadog CSIDriver release
31-
CSILatestImageVersion = "1.2.1"
31+
CSILatestImageVersion = "1.2.2"
3232
// DefaultRegistrarImageVersion corresponds to the default CSI registrar image used
3333
DefaultRegistrarImageVersion = "v2.0.1"
3434
// Datadog container registry

0 commit comments

Comments
 (0)