mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 10:33:35 +00:00
e2e: use docker.io/library as prefix for official images
Docker Hub offers a way to pull official images without any project prefix, like "docker.io/vault:latest". This does a redirect to the images located under "docker.io/library". By using the full qualified image name, a redirect gets removed while pulling the images. This reduces the likelyhood of hittin Docker Hub pull rate-limits. Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
committed by
mergify[bot]
parent
954ac97d22
commit
1f18e876f0
@ -196,7 +196,7 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: my-container
|
||||
image: docker.io/debian:latest
|
||||
image: docker.io/library/debian:latest
|
||||
command: ["/bin/bash", "-c"]
|
||||
args: [ "tail -f /dev/null" ]
|
||||
volumeDevices:
|
||||
@ -223,7 +223,7 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: my-container
|
||||
image: docker.io/debian:latest
|
||||
image: docker.io/library/debian:latest
|
||||
command: ["/bin/bash", "-c"]
|
||||
args: [ "tail -f /dev/null" ]
|
||||
volumeDevices:
|
||||
|
Reference in New Issue
Block a user