Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point the k8ssandra-operator image to the scarf proxy #1090

Merged
merged 3 commits into from
Oct 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Point the k8ssandra-operator image to the scarf proxy
adejanovski committed Oct 17, 2023
commit 2adf6c904b26e75125837fc516ae86ff0d964927
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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 \
2 changes: 1 addition & 1 deletion charts/k8ssandra-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion config/deployments/default/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -4,5 +4,5 @@ namespace: k8ssandra-operator
resources:
- ../../default
images:
- name: k8ssandra/k8ssandra-operator
- name: cr.k8ssandra.io/k8ssandra/k8ssandra-operator
newTag: latest