mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-05-28 17:46:41 +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> (cherry picked from commit 1f18e876f0e63e16a8beec2821889339e0a5ea8d)
This commit is contained in:
parent
953c33058f
commit
12ff7b7c98
@ -188,7 +188,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:
|
||||
@ -215,7 +215,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:
|
||||
|
@ -17,7 +17,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: web-server
|
||||
image: docker.io/nginx:latest
|
||||
image: docker.io/library/nginx:latest
|
||||
volumeMounts:
|
||||
- name: mypvc
|
||||
mountPath: /var/lib/www/html
|
||||
|
@ -6,7 +6,7 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: web-server
|
||||
image: docker.io/nginx:latest
|
||||
image: docker.io/library/nginx:latest
|
||||
volumeMounts:
|
||||
- name: mypvc
|
||||
mountPath: /var/lib/www/html
|
||||
|
@ -6,7 +6,7 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: web-server
|
||||
image: docker.io/nginx:latest
|
||||
image: docker.io/library/nginx:latest
|
||||
volumeMounts:
|
||||
- name: mypvc
|
||||
mountPath: /var/lib/www/html
|
||||
|
@ -6,7 +6,7 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: web-server
|
||||
image: docker.io/nginx:latest
|
||||
image: docker.io/library/nginx:latest
|
||||
volumeMounts:
|
||||
- name: mypvc
|
||||
mountPath: /var/lib/www
|
||||
|
@ -39,7 +39,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: vault
|
||||
image: docker.io/vault:latest
|
||||
image: docker.io/library/vault:latest
|
||||
securityContext:
|
||||
runAsUser: 100
|
||||
env:
|
||||
|
@ -6,7 +6,7 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: web-server
|
||||
image: docker.io/nginx:latest
|
||||
image: docker.io/library/nginx:latest
|
||||
volumeMounts:
|
||||
- name: mypvc
|
||||
mountPath: /var/lib/www/html
|
||||
|
@ -6,7 +6,7 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: web-server
|
||||
image: docker.io/nginx:latest
|
||||
image: docker.io/library/nginx:latest
|
||||
volumeMounts:
|
||||
- name: mypvc
|
||||
mountPath: /var/lib/www/html
|
||||
|
@ -6,7 +6,7 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: web-server
|
||||
image: docker.io/nginx:latest
|
||||
image: docker.io/library/nginx:latest
|
||||
volumeMounts:
|
||||
- name: mypvc
|
||||
mountPath: /var/lib/www/html
|
||||
|
Loading…
x
Reference in New Issue
Block a user