From aae838672b574153c92ea5b9234944c94a6452b2 Mon Sep 17 00:00:00 2001 From: prafull01 Date: Tue, 13 Jun 2023 23:56:23 +0530 Subject: [PATCH] Update CRDB versions --- config/manager/patches/image.yaml | 2 ++ .../bases/cockroach-operator.clusterserviceversion.yaml | 2 ++ config/manifests/patches/deployment_patch.yaml | 2 ++ config/samples/crdb-tls-example.yaml | 2 +- crdb-versions.yaml | 3 +++ examples/client-secure-operator.yaml | 2 +- examples/example.yaml | 4 ++-- examples/smoketest.yaml | 2 +- install/operator.yaml | 2 ++ 9 files changed, 16 insertions(+), 5 deletions(-) diff --git a/config/manager/patches/image.yaml b/config/manager/patches/image.yaml index 4fdf7cf1a..2dc4048fe 100644 --- a/config/manager/patches/image.yaml +++ b/config/manager/patches/image.yaml @@ -218,3 +218,5 @@ spec: value: cockroachdb/cockroach:v23.1.1 - name: RELATED_IMAGE_COCKROACH_v23_1_2 value: cockroachdb/cockroach:v23.1.2 + - name: RELATED_IMAGE_COCKROACH_v23_1_3 + value: cockroachdb/cockroach:v23.1.3 diff --git a/config/manifests/bases/cockroach-operator.clusterserviceversion.yaml b/config/manifests/bases/cockroach-operator.clusterserviceversion.yaml index 9b0726467..ff1f78aaa 100644 --- a/config/manifests/bases/cockroach-operator.clusterserviceversion.yaml +++ b/config/manifests/bases/cockroach-operator.clusterserviceversion.yaml @@ -375,3 +375,5 @@ spec: image: registry.connect.redhat.com/cockroachdb/cockroach@sha256:bc4b75ed71845d5b18e1d9163d480fd9d0d3cb5ebbcfed00a2e4e1b174c0a5de - name: RELATED_IMAGE_COCKROACH_v23_1_2 image: registry.connect.redhat.com/cockroachdb/cockroach@sha256:0b0e0588c1aadf0c3826cd584bd2b3a7d6781882dcb5c5e037b47ff5cb84509b + - name: RELATED_IMAGE_COCKROACH_v23_1_3 + image: registry.connect.redhat.com/cockroachdb/cockroach@sha256:40f00476b63cb9e370fe85f01407173693213a9242fc117d28b06378ca0d98e0 diff --git a/config/manifests/patches/deployment_patch.yaml b/config/manifests/patches/deployment_patch.yaml index 446e85dad..8bfa4614a 100644 --- a/config/manifests/patches/deployment_patch.yaml +++ b/config/manifests/patches/deployment_patch.yaml @@ -227,4 +227,6 @@ spec: value: registry.connect.redhat.com/cockroachdb/cockroach@sha256:bc4b75ed71845d5b18e1d9163d480fd9d0d3cb5ebbcfed00a2e4e1b174c0a5de - name: RELATED_IMAGE_COCKROACH_v23_1_2 value: registry.connect.redhat.com/cockroachdb/cockroach@sha256:0b0e0588c1aadf0c3826cd584bd2b3a7d6781882dcb5c5e037b47ff5cb84509b + - name: RELATED_IMAGE_COCKROACH_v23_1_3 + value: registry.connect.redhat.com/cockroachdb/cockroach@sha256:40f00476b63cb9e370fe85f01407173693213a9242fc117d28b06378ca0d98e0 image: RH_COCKROACH_OP_IMAGE_PLACEHOLDER diff --git a/config/samples/crdb-tls-example.yaml b/config/samples/crdb-tls-example.yaml index 329b578e6..563dc125b 100644 --- a/config/samples/crdb-tls-example.yaml +++ b/config/samples/crdb-tls-example.yaml @@ -19,7 +19,7 @@ kind: CrdbCluster metadata: name: crdb-tls-example spec: - cockroachDBVersion: v23.1.2 + cockroachDBVersion: v23.1.3 dataStore: pvc: spec: diff --git a/crdb-versions.yaml b/crdb-versions.yaml index d2c3893eb..5a8ce8579 100644 --- a/crdb-versions.yaml +++ b/crdb-versions.yaml @@ -310,3 +310,6 @@ CrdbVersions: - image: cockroachdb/cockroach:v23.1.2 redhatImage: registry.connect.redhat.com/cockroachdb/cockroach@sha256:0b0e0588c1aadf0c3826cd584bd2b3a7d6781882dcb5c5e037b47ff5cb84509b tag: v23.1.2 +- image: cockroachdb/cockroach:v23.1.3 + redhatImage: registry.connect.redhat.com/cockroachdb/cockroach@sha256:40f00476b63cb9e370fe85f01407173693213a9242fc117d28b06378ca0d98e0 + tag: v23.1.3 diff --git a/examples/client-secure-operator.yaml b/examples/client-secure-operator.yaml index fc2b635f0..080b4ca80 100644 --- a/examples/client-secure-operator.yaml +++ b/examples/client-secure-operator.yaml @@ -23,7 +23,7 @@ spec: serviceAccountName: cockroachdb-sa containers: - name: cockroachdb-client-secure - image: cockroachdb/cockroach:v23.1.2 + image: cockroachdb/cockroach:v23.1.3 imagePullPolicy: IfNotPresent volumeMounts: - name: client-certs diff --git a/examples/example.yaml b/examples/example.yaml index 348491e81..7cf191b2d 100644 --- a/examples/example.yaml +++ b/examples/example.yaml @@ -40,9 +40,9 @@ spec: memory: 8Gi tlsEnabled: true # You can set either a version of the db or a specific image name -# cockroachDBVersion: v23.1.2 +# cockroachDBVersion: v23.1.3 image: - name: cockroachdb/cockroach:v23.1.2 + name: cockroachdb/cockroach:v23.1.3 # nodes refers to the number of crdb pods that are created # via the statefulset nodes: 3 diff --git a/examples/smoketest.yaml b/examples/smoketest.yaml index 846cfad9f..daeedf368 100644 --- a/examples/smoketest.yaml +++ b/examples/smoketest.yaml @@ -39,5 +39,5 @@ spec: memory: 300Mi tlsEnabled: true image: - name: cockroachdb/cockroach:v23.1.2 + name: cockroachdb/cockroach:v23.1.3 nodes: 3 diff --git a/install/operator.yaml b/install/operator.yaml index 60ffe3fac..9307c8fd5 100644 --- a/install/operator.yaml +++ b/install/operator.yaml @@ -576,6 +576,8 @@ spec: value: cockroachdb/cockroach:v23.1.1 - name: RELATED_IMAGE_COCKROACH_v23_1_2 value: cockroachdb/cockroach:v23.1.2 + - name: RELATED_IMAGE_COCKROACH_v23_1_3 + value: cockroachdb/cockroach:v23.1.3 - name: OPERATOR_NAME value: cockroachdb - name: POD_NAME