diff --git a/deploy/cephfs/kubernetes/csi-cephfsplugin-provisioner.yaml b/deploy/cephfs/kubernetes/csi-cephfsplugin-provisioner.yaml index 4186a1752..76d74efcd 100644 --- a/deploy/cephfs/kubernetes/csi-cephfsplugin-provisioner.yaml +++ b/deploy/cephfs/kubernetes/csi-cephfsplugin-provisioner.yaml @@ -42,7 +42,7 @@ spec: serviceAccount: cephfs-csi-provisioner containers: - name: csi-provisioner - image: quay.io/k8scsi/csi-provisioner:v1.6.0 + image: k8s.gcr.io/sig-storage/csi-provisioner:v1.6.0 args: - "--csi-address=$(ADDRESS)" - "--v=5" @@ -59,7 +59,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-resizer - image: quay.io/k8scsi/csi-resizer:v0.5.0 + image: k8s.gcr.io/sig-storage/csi-resizer:v0.5.0 args: - "--csi-address=$(ADDRESS)" - "--v=5" @@ -74,7 +74,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-snapshotter - image: quay.io/k8scsi/csi-snapshotter:v2.1.1 + image: k8s.gcr.io/sig-storage/csi-snapshotter:v2.1.1 args: - "--csi-address=$(ADDRESS)" - "--v=5" @@ -90,7 +90,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-cephfsplugin-attacher - image: quay.io/k8scsi/csi-attacher:v2.1.1 + image: k8s.gcr.io/sig-storage/csi-attacher:v2.1.1 args: - "--v=5" - "--csi-address=$(ADDRESS)" diff --git a/deploy/cephfs/kubernetes/csi-cephfsplugin.yaml b/deploy/cephfs/kubernetes/csi-cephfsplugin.yaml index 8d54c3097..1fd481d62 100644 --- a/deploy/cephfs/kubernetes/csi-cephfsplugin.yaml +++ b/deploy/cephfs/kubernetes/csi-cephfsplugin.yaml @@ -24,7 +24,7 @@ spec: # created by privileged CSI driver container. securityContext: privileged: true - image: quay.io/k8scsi/csi-node-driver-registrar:v1.3.0 + image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v1.3.0 args: - "--v=5" - "--csi-address=/csi/csi.sock" diff --git a/deploy/rbd/kubernetes/csi-rbdplugin-provisioner.yaml b/deploy/rbd/kubernetes/csi-rbdplugin-provisioner.yaml index 2ebc81e97..8cdcb4ae1 100644 --- a/deploy/rbd/kubernetes/csi-rbdplugin-provisioner.yaml +++ b/deploy/rbd/kubernetes/csi-rbdplugin-provisioner.yaml @@ -42,7 +42,7 @@ spec: serviceAccount: rbd-csi-provisioner containers: - name: csi-provisioner - image: quay.io/k8scsi/csi-provisioner:v1.6.0 + image: k8s.gcr.io/sig-storage/csi-provisioner:v1.6.0 args: - "--csi-address=$(ADDRESS)" - "--v=5" @@ -59,7 +59,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-snapshotter - image: quay.io/k8scsi/csi-snapshotter:v2.1.0 + image: k8s.gcr.io/sig-storage/csi-snapshotter:v2.1.0 args: - "--csi-address=$(ADDRESS)" - "--v=5" @@ -75,7 +75,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-attacher - image: quay.io/k8scsi/csi-attacher:v2.1.1 + image: k8s.gcr.io/sig-storage/csi-attacher:v2.1.1 args: - "--v=5" - "--csi-address=$(ADDRESS)" @@ -89,7 +89,7 @@ spec: - name: socket-dir mountPath: /csi - name: csi-resizer - image: quay.io/k8scsi/csi-resizer:v0.5.0 + image: k8s.gcr.io/sig-storage/csi-resizer:v0.5.0 args: - "--csi-address=$(ADDRESS)" - "--v=5" diff --git a/deploy/rbd/kubernetes/csi-rbdplugin.yaml b/deploy/rbd/kubernetes/csi-rbdplugin.yaml index 25f2d020c..6e6384411 100644 --- a/deploy/rbd/kubernetes/csi-rbdplugin.yaml +++ b/deploy/rbd/kubernetes/csi-rbdplugin.yaml @@ -25,7 +25,7 @@ spec: # created by privileged CSI driver container. securityContext: privileged: true - image: quay.io/k8scsi/csi-node-driver-registrar:v1.3.0 + image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v1.3.0 args: - "--v=5" - "--csi-address=/csi/csi.sock" diff --git a/scripts/minikube.sh b/scripts/minikube.sh index 29e7dab15..ff701c8a3 100755 --- a/scripts/minikube.sh +++ b/scripts/minikube.sh @@ -164,7 +164,7 @@ CPUS=${CPUS:-"$(nproc)"} VM_DRIVER=${VM_DRIVER:-"virtualbox"} #configure image repo CEPHCSI_IMAGE_REPO=${CEPHCSI_IMAGE_REPO:-"quay.io/cephcsi"} -K8S_IMAGE_REPO=${K8S_IMAGE_REPO:-"quay.io/k8scsi"} +K8S_IMAGE_REPO=${K8S_IMAGE_REPO:-"k8s.gcr.io/sig-storage"} DISK="sda1" if [[ "${VM_DRIVER}" == "kvm2" ]]; then # use vda1 instead of sda1 when running with the libvirt driver