Skip to content

Commit

Permalink
Fix image configuration
Browse files Browse the repository at this point in the history
Previously the image name was constructed as docker.io/cr.k8ssandra.io/... which is obviously wrong.
  • Loading branch information
pschichtel committed Oct 27, 2023
1 parent f74672b commit b604653
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG/CHANGELOG-1.10.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/k8ssandra-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b604653

Please sign in to comment.