diff --git a/cnf-tests/GATEKEEPER.md b/cnf-tests/GATEKEEPER.md index fabbc29abc..e4ed7899ed 100644 --- a/cnf-tests/GATEKEEPER.md +++ b/cnf-tests/GATEKEEPER.md @@ -80,7 +80,7 @@ metadata: spec: containers: - name: main - image: centos + image: ubi8 command: ["/bin/bash", "-c", "sleep INF"] EOF ``` @@ -107,7 +107,7 @@ spec: operator: Exists containers: - name: main - image: centos + image: ubi8 command: ["/bin/bash", "-c", "sleep INF"] EOF ``` @@ -134,7 +134,7 @@ spec: - operator: "Exists" containers: - name: podexample - image: centos + image: ubi8 command: ["/bin/bash", "-c", "sleep INF"] EOF ``` diff --git a/tools/s2i-dpdk/Dockerfile b/tools/s2i-dpdk/Dockerfile index 37c53b90e2..f893591523 100644 --- a/tools/s2i-dpdk/Dockerfile +++ b/tools/s2i-dpdk/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/centos/centos:stream9 +FROM registry.access.redhat.com/ubi9/ubi:latest LABEL maintainer="Sebastian Scheinkman " LABEL io.openshift.s2i.scripts-url="image:///usr/libexec/s2i"