Skip to content

Commit 9ea50c9

Browse files
authored
Update operator image to 1.20.0-rc.2 (#2127)
1 parent 3e1f6d7 commit 9ea50c9

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

charts/datadog-operator/CHANGELOG.md

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

3+
## 2.15.0-dev.2
4+
5+
* Update Datadog Operator image tag to 1.20.0-rc.2.
6+
37
## 2.15.0-dev.1
48

59
* Update Datadog Operator image tag to 1.20.0-rc.1.

charts/datadog-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: datadog-operator
3-
version: 2.15.0-dev.1
4-
appVersion: 1.20.0-rc.1
3+
version: 2.15.0-dev.2
4+
appVersion: 1.20.0-rc.2
55
description: Datadog Operator
66
keywords:
77
- monitoring

charts/datadog-operator/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Datadog Operator
22

3-
![Version: 2.15.0-dev.1](https://img.shields.io/badge/Version-2.15.0--dev.1-informational?style=flat-square) ![AppVersion: 1.20.0-rc.1](https://img.shields.io/badge/AppVersion-1.20.0--rc.1-informational?style=flat-square)
3+
![Version: 2.15.0-dev.2](https://img.shields.io/badge/Version-2.15.0--dev.2-informational?style=flat-square) ![AppVersion: 1.20.0-rc.2](https://img.shields.io/badge/AppVersion-1.20.0--rc.2-informational?style=flat-square)
44

55
## Values
66

@@ -37,7 +37,7 @@
3737
| image.doNotCheckTag | bool | `false` | Permit skipping operator image tag compatibility with the chart. |
3838
| image.pullPolicy | string | `"IfNotPresent"` | Define the pullPolicy for Datadog Operator image |
3939
| image.repository | string | `"gcr.io/datadoghq/operator"` | Repository to use for Datadog Operator image |
40-
| image.tag | string | `"1.20.0-rc.1"` | Define the Datadog Operator version to use |
40+
| image.tag | string | `"1.20.0-rc.2"` | Define the Datadog Operator version to use |
4141
| imagePullSecrets | list | `[]` | Datadog Operator repository pullSecret (ex: specify docker registry credentials) |
4242
| installCRDs | bool | `true` | Set to true to deploy the Datadog's CRDs |
4343
| introspection.enabled | bool | `false` | If true, enables introspection feature (beta). Requires v1.4.0+ |

charts/datadog-operator/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@ Check operator image tag version.
8787
{{- $parts := split "@" $tag -}}
8888
{{- index $parts "_0"}}
8989
{{- else -}}
90-
{{ "1.20.0-rc.1" }}
90+
{{ "1.20.0-rc.2" }}
9191
{{- end -}}
9292
{{- end -}}

charts/datadog-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ image:
4747
# image.repository -- Repository to use for Datadog Operator image
4848
repository: gcr.io/datadoghq/operator
4949
# image.tag -- Define the Datadog Operator version to use
50-
tag: 1.20.0-rc.1
50+
tag: 1.20.0-rc.2
5151
# image.pullPolicy -- Define the pullPolicy for Datadog Operator image
5252
pullPolicy: IfNotPresent
5353
# image.doNotCheckTag -- Permit skipping operator image tag compatibility with the chart.

test/datadog-operator/baseline/Operator_Deployment_default.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ metadata:
77
namespace: datadog-agent
88
labels:
99
app.kubernetes.io/name: datadog-operator
10-
helm.sh/chart: datadog-operator-2.15.0-dev.1
10+
helm.sh/chart: datadog-operator-2.15.0-dev.2
1111
app.kubernetes.io/instance: datadog-operator
12-
app.kubernetes.io/version: "1.20.0-rc.1"
12+
app.kubernetes.io/version: "1.20.0-rc.2"
1313
app.kubernetes.io/managed-by: Helm
1414
spec:
1515
replicas: 1
@@ -35,7 +35,7 @@ spec:
3535
serviceAccountName: datadog-operator
3636
containers:
3737
- name: datadog-operator
38-
image: "gcr.io/datadoghq/operator:1.20.0-rc.1"
38+
image: "gcr.io/datadoghq/operator:1.20.0-rc.2"
3939
imagePullPolicy: IfNotPresent
4040
env:
4141
- name: WATCH_NAMESPACE

test/datadog-operator/operator_deployment_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func verifyDeployment(t *testing.T, manifest string) {
144144
assert.Equal(t, 1, len(deployment.Spec.Template.Spec.Containers))
145145
operatorContainer := deployment.Spec.Template.Spec.Containers[0]
146146
assert.Equal(t, v1.PullPolicy("IfNotPresent"), operatorContainer.ImagePullPolicy)
147-
assert.Equal(t, "gcr.io/datadoghq/operator:1.20.0-rc.1", operatorContainer.Image)
147+
assert.Equal(t, "gcr.io/datadoghq/operator:1.20.0-rc.2", operatorContainer.Image)
148148
assert.NotContains(t, operatorContainer.Args, "-webhookEnabled=false")
149149
assert.NotContains(t, operatorContainer.Args, "-webhookEnabled=true")
150150
}

0 commit comments

Comments
 (0)