Skip to content

Commit

Permalink
Point the k8ssandra-operator image to the scarf proxy (#1090)
Browse files Browse the repository at this point in the history
  • Loading branch information
adejanovski authored Oct 20, 2023
1 parent d309735 commit b8fdff4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG/CHANGELOG-1.10.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ When cutting a new release, update the `unreleased` heading to the tag being gen

## unreleased

* [CHANGE] [#1088](https://github.com/k8ssandra/k8ssandra-operator/issues/1088) Use the Scarf proxy for image coordinates
* [ENHANCEMENT] [#1073](https://github.com/k8ssandra/k8ssandra-operator/issues/1073) Add a namespace label to the Cassandra metrics
* [BUGFIX] [#1060](https://github.com/k8ssandra/k8ssandra-operator/issues/1060) Fix restore mapping shuffling nodes when restoring in place
* [BUGFIX] [#1061](https://github.com/k8ssandra/k8ssandra-operator/issues/1061) Point to cass-config-builder 1.0.7 for arm64 compatibility
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ create-kind-multicluster:
scripts/setup-kind-multicluster.sh --clusters $(NUM_CLUSTERS) --kind-node-version $(KIND_NODE_VERSION) --kind-worker-nodes $(NUM_WORKER_NODES) --output-file $(KIND_KUBECONFIG)

kind-load-image:
kind load docker-image --name $(KIND_CLUSTER) ${IMG}
docker tag ${IMG} cr.k8ssandra.io/${IMG}
kind load docker-image --name $(KIND_CLUSTER) cr.k8ssandra.io/${IMG}

kind-load-image-multi:
for ((i = 0; i < $(NUM_CLUSTERS); ++i)); do \
Expand Down
2 changes: 1 addition & 1 deletion charts/k8ssandra-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ image:
# -- Container registry containing the repository where the image resides
registry: docker.io
# -- Docker repository for cass-operator
repository: k8ssandra/k8ssandra-operator
repository: cr.k8ssandra.io/k8ssandra/k8ssandra-operator
# -- Pull policy for the operator container
pullPolicy: IfNotPresent
# -- Tag of the k8ssandra-operator image to pull from image.repository
Expand Down
2 changes: 1 addition & 1 deletion config/deployments/default/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ namespace: k8ssandra-operator
resources:
- ../../default
images:
- name: k8ssandra/k8ssandra-operator
- name: cr.k8ssandra.io/k8ssandra/k8ssandra-operator
newTag: latest

0 comments on commit b8fdff4

Please sign in to comment.