From 4fd0294eb78e318473c34acc409af23054fce61d Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Thu, 19 Nov 2020 12:50:59 +0100 Subject: [PATCH] e2e: pull centos image from registry.centos.org The BlockVolume PVC tests consume the example files that refer to "centos:latest" without registry. This means that the images will get pulled from Docker Hub, which has rate limits preventing CI jobs from pulling images. Signed-off-by: Niels de Vos --- examples/rbd/block-pod-clone.yaml | 2 +- examples/rbd/raw-block-pod.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/rbd/block-pod-clone.yaml b/examples/rbd/block-pod-clone.yaml index d2cce04a2..84eafded4 100644 --- a/examples/rbd/block-pod-clone.yaml +++ b/examples/rbd/block-pod-clone.yaml @@ -6,7 +6,7 @@ metadata: spec: containers: - name: centos - image: centos:latest + image: registry.centos.org/centos:latest command: ["/bin/sleep", "infinity"] volumeDevices: - name: data diff --git a/examples/rbd/raw-block-pod.yaml b/examples/rbd/raw-block-pod.yaml index 8e8d67357..543bc1ae7 100644 --- a/examples/rbd/raw-block-pod.yaml +++ b/examples/rbd/raw-block-pod.yaml @@ -6,7 +6,7 @@ metadata: spec: containers: - name: centos - image: centos:latest + image: registry.centos.org/centos:latest command: ["/bin/sleep", "infinity"] volumeDevices: - name: data