chore: using docker hub as default container registry

This commit is contained in:
Dario Tranchitella
2022-05-23 15:41:45 +02:00
parent 0be08a0099
commit c0e718cb07
6 changed files with 7 additions and 7 deletions

View File

@@ -1021,7 +1021,7 @@ spec:
- --leader-elect
command:
- /manager
image: quay.io/clastix/kamaji:latest
image: clastix/kamaji:latest
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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 | `{}` | |

View File

@@ -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