From 1d16537badccebe41d96a73c90ca8ce1c60493bb Mon Sep 17 00:00:00 2001 From: Steven Skeard Date: Fri, 27 Mar 2026 16:15:28 -0400 Subject: [PATCH 1/2] cnf-tests: CNF-22668: update container base image from centos to ubi8 --- cnf-tests/GATEKEEPER.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ``` From aed49c2f6519cd44729b9cb78267e1830e375f99 Mon Sep 17 00:00:00 2001 From: Steven Skeard Date: Fri, 27 Mar 2026 16:15:46 -0400 Subject: [PATCH 2/2] tools: CNF-22668: update container base image from centos:stream9 to ubi:9 --- tools/s2i-dpdk/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"