Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/templates/cni-install.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
effect: NoSchedule
containers:
- name: install-cni-plugins
image: alpine
image: docker.io/library/alpine

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

For better reproducibility and to avoid unexpected changes, it's recommended to pin the Docker image to a specific version tag instead of relying on the implicit :latest tag. This ensures that the e2e tests always use the same version of the Alpine image, preventing potential failures due to upstream changes in the image.

        image: docker.io/library/alpine:3.20

command: ["/bin/sh", "/scripts/install_cni.sh"]
resources:
requests:
Expand Down
4 changes: 2 additions & 2 deletions e2e/templates/default-route1.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ metadata:
spec:
containers:
- name: default-route-worker1
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true
Expand All @@ -51,7 +51,7 @@ metadata:
spec:
containers:
- name: default-route-worker2
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true
2 changes: 1 addition & 1 deletion e2e/templates/dra-integration.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ metadata:
spec:
containers:
- name: ctr0
image: ubuntu:22.04
image: docker.io/library/ubuntu:22.04
command: ["bash", "-c"]
args: ["export; sleep 9999"]
resources:
Expand Down
4 changes: 2 additions & 2 deletions e2e/templates/simple-macvlan1.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ metadata:
spec:
containers:
- name: macvlan-worker1
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true
Expand All @@ -55,7 +55,7 @@ metadata:
spec:
containers:
- name: macvlan-worker2
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion e2e/templates/simple-pod.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
spec:
containers:
- name: simple-centos1
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true
Loading