diff --git a/config/install.yaml b/config/install.yaml index 43af0be..6c67187 100644 --- a/config/install.yaml +++ b/config/install.yaml @@ -1021,7 +1021,7 @@ spec: - --leader-elect command: - /manager - image: quay.io/clastix/kamaji:latest + image: clastix/kamaji:latest imagePullPolicy: IfNotPresent livenessProbe: httpGet: diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index ccf51fa..e51fed2 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -12,5 +12,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization images: - name: controller - newName: quay.io/clastix/kamaji + newName: clastix/kamaji newTag: latest diff --git a/deploy/kind/Makefile b/deploy/kind/Makefile index e6b62ce..8409629 100644 --- a/deploy/kind/Makefile +++ b/deploy/kind/Makefile @@ -27,10 +27,10 @@ ingress-nginx-install: kubectl apply -f $(kind_path)/nginx-deploy.yaml kamaji-kind-worker-build: - docker build -f $(kind_path)/kamaji-kind-worker.dockerfile -t quay.io/clastix/kamaji-kind-worker:$${WORKER_VERSION:-latest} . + docker build -f $(kind_path)/kamaji-kind-worker.dockerfile -t clastix/kamaji-kind-worker:$${WORKER_VERSION:-latest} . kamaji-kind-worker-push: kamaji-kind-worker-build - docker push quay.io/clastix/kamaji-kind-worker:$${WORKER_VERSION:-latest} + docker push clastix/kamaji-kind-worker:$${WORKER_VERSION:-latest} kamaji-kind-worker-join: $(kind_path)/join-node.bash diff --git a/deploy/kind/join-node.bash b/deploy/kind/join-node.bash index 3e9aefa..8b64555 100755 --- a/deploy/kind/join-node.bash +++ b/deploy/kind/join-node.bash @@ -3,7 +3,7 @@ set -e # Constants -export DOCKER_IMAGE_NAME="quay.io/clastix/kamaji-kind-worker" +export DOCKER_IMAGE_NAME="clastix/kamaji-kind-worker" export DOCKER_NETWORK="kind" # Variables diff --git a/helm/kamaji/README.md b/helm/kamaji/README.md index 64e4fea..e4cf8ff 100644 --- a/helm/kamaji/README.md +++ b/helm/kamaji/README.md @@ -67,7 +67,7 @@ Kubernetes: `>=1.18` | fullnameOverride | string | `""` | | | healthProbeBindAddress | string | `":8081"` | The address the probe endpoint binds to. (default ":8081") | | image.pullPolicy | string | `"IfNotPresent"` | | -| image.repository | string | `"quay.io/clastix/kamaji"` | The container image of the Kamaji controller. | +| image.repository | string | `"clastix/kamaji"` | The container image of the Kamaji controller. | | image.tag | string | `"latest"` | | | imagePullSecrets | list | `[]` | | | ingress.annotations | object | `{}` | | diff --git a/helm/kamaji/values.yaml b/helm/kamaji/values.yaml index ccf86ba..b92d4fc 100644 --- a/helm/kamaji/values.yaml +++ b/helm/kamaji/values.yaml @@ -7,7 +7,7 @@ replicaCount: 1 image: # -- The container image of the Kamaji controller. - repository: quay.io/clastix/kamaji + repository: clastix/kamaji pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: latest