From 294ee26f84dded56ca687d340e44841d501dc7c1 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. --- charts/k8ssandra-operator/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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