Skip to content

Commit

Permalink
Point the k8ssandra-operator image to the scarf proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
adejanovski committed Oct 17, 2023
1 parent 475d044 commit 2adf6c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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 2adf6c9

Please sign in to comment.