From b60465380d7d16e0a06977f4d15a9e5ccbbcb3a5 Mon Sep 17 00:00:00 2001 From: Phillip Schichtel Date: Fri, 27 Oct 2023 11:55:47 +0200 Subject: [PATCH] Fix image configuration Previously the image name was constructed as docker.io/cr.k8ssandra.io/... which is obviously wrong. --- CHANGELOG/CHANGELOG-1.10.md | 2 ++ charts/k8ssandra-operator/values.yaml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG/CHANGELOG-1.10.md b/CHANGELOG/CHANGELOG-1.10.md index be899da74..8815ef191 100644 --- a/CHANGELOG/CHANGELOG-1.10.md +++ b/CHANGELOG/CHANGELOG-1.10.md @@ -15,6 +15,8 @@ When cutting a new release, update the `unreleased` heading to the tag being gen ## unreleased +* [BUGFIX] [#1109](https://github.com/k8ssandra/k8ssandra-operator/issues/1109) Correctly configure the cr.k8ssandra.io registry + ## v1.10.0 - 2023-10-26 * [CHANGE] [#1072](https://github.com/k8ssandra/k8ssandra-operator/issues/1072) Add settings to configure reaper HTTP management interface diff --git a/charts/k8ssandra-operator/values.yaml b/charts/k8ssandra-operator/values.yaml index f2ab8a426..b16bf9576 100644 --- a/charts/k8ssandra-operator/values.yaml +++ b/charts/k8ssandra-operator/values.yaml @@ -19,9 +19,9 @@ controlPlane: true # Sets properties for the k8ssandra-operator container image: # -- Container registry containing the repository where the image resides - registry: docker.io + registry: cr.k8ssandra.io # -- Docker repository for cass-operator - repository: cr.k8ssandra.io/k8ssandra/k8ssandra-operator + repository: k8ssandra/k8ssandra-operator # -- Pull policy for the operator container pullPolicy: IfNotPresent # -- Tag of the k8ssandra-operator image to pull from image.repository