diff --git a/e2e/README.md b/e2e/README.md index d10783292..cc7a6fde8 100644 --- a/e2e/README.md +++ b/e2e/README.md @@ -54,7 +54,7 @@ following environment variables can be exported to customize kubernetes deployme | MEMORY | Amount of RAM allocated to the minikube VM in MB | 4096 | | VM_DRIVER | VM driver to create virtual machine | virtualbox | | CEPHCSI_IMAGE_REPO | Repo URL to pull cephcsi images | quay.io/cephcsi | -| K8S_IMAGE_REPO | Repo URL to pull kubernetes sidecar images | k8s.gcr.io/sig-storage | +| K8S_IMAGE_REPO | Repo URL to pull kubernetes sidecar images | registry.k8s.io/sig-storage | | K8S_FEATURE_GATES | Feature gates to enable on kubernetes cluster | BlockVolume=true,CSIBlockVolume=true,VolumeSnapshotDataSource=true | | ROOK_BLOCK_POOL_NAME | Block pool name to create in the rook instance | newrbdpool | diff --git a/scripts/minikube.sh b/scripts/minikube.sh index 549dbc35c..127ddf891 100755 --- a/scripts/minikube.sh +++ b/scripts/minikube.sh @@ -162,7 +162,7 @@ NUM_DISKS=${NUM_DISKS:-"1"} DISK_SIZE=${DISK_SIZE:-"32g"} #configure image repo CEPHCSI_IMAGE_REPO=${CEPHCSI_IMAGE_REPO:-"quay.io/cephcsi"} -K8S_IMAGE_REPO=${K8S_IMAGE_REPO:-"k8s.gcr.io/sig-storage"} +K8S_IMAGE_REPO=${K8S_IMAGE_REPO:-"registry.k8s.io/sig-storage"} DISK="sda1" if [[ "${VM_DRIVER}" == "kvm2" ]]; then # use vda1 instead of sda1 when running with the libvirt driver