Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG GOLANG_BASE_IMG=golang:1.26.4
ARG OPERATOR_CONTROLLER_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi-minimal:9.7
ARG OPERATOR_CONTROLLER_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi-minimal:9.8

# Build the manager binary
FROM ${GOLANG_BASE_IMG} AS builder
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ BUILD_BASE_IMG ?= ubuntu:22.04
DOCKER_CACHE_FROM ?=
DOCKER_CACHE_TO ?=
GOLANG_BASE_IMG ?= golang:1.26.4
OPERATOR_CONTROLLER_BASE_IMAGE ?= registry.access.redhat.com/ubi9/ubi-minimal:9.7
OPERATOR_CONTROLLER_BASE_IMAGE ?= registry.access.redhat.com/ubi9/ubi-minimal:9.8
# Helm binary installed into the build-shell image (Dockerfile.build). Pin the
# version and its published sha256 together; bump both when upgrading.
HELM_VERSION ?= v3.19.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN mkdir -p /modules_files && \
cp -r /lib/modules/${KERNEL_VERSION}/extra/* /gim_ko_files/ && \
cp -r /lib/modules/${KERNEL_VERSION}/kernel/* /kernel_files/

FROM registry.redhat.io/ubi9/ubi-minimal
FROM registry.redhat.io/ubi9/ubi-minimal:9.8

ARG KERNEL_VERSION

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN mkdir -p /modules_files && \
cp -r /lib/modules/${KERNEL_VERSION}/extra/* /amdgpu_ko_files/ && \
cp -r /lib/modules/${KERNEL_VERSION}/kernel/* /kernel_files/

FROM registry.redhat.io/ubi9/ubi-minimal
FROM registry.redhat.io/ubi9/ubi-minimal:9.8

ARG KERNEL_VERSION

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN mkdir -p /modules_files && \
cp -r /lib/modules/${KERNEL_VERSION}/extra/* /amdgpu_ko_files/ && \
cp -r /lib/modules/${KERNEL_VERSION}/kernel/* /kernel_files/

FROM registry.redhat.io/ubi9/ubi-minimal
FROM registry.redhat.io/ubi9/ubi-minimal:9.8

ARG KERNEL_VERSION

Expand Down
2 changes: 1 addition & 1 deletion internal/utils_container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8

LABEL name="amd-gpu-operator-utils"
LABEL maintainer="sriram.ravishankar@amd.com,yan.sun3@amd.com"
Expand Down
Loading