Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ubi(-minimal) to 8.8 #6466

Merged
merged 1 commit into from Jun 15, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions changelog/fragments/01-ubi-image-bump.yaml
@@ -0,0 +1,14 @@
# entries is a list of entries to include in
# release notes and/or the migration guide
entries:
- description: >
(images): Bumps all Operator SDK maintained images to now use ubi(-minimal) tag 8.8
# kind is one of:
# - addition
# - change
# - deprecation
# - removal
# - bugfix
kind: "change"
# Is this a breaking change?
breaking: false
2 changes: 1 addition & 1 deletion images/ansible-operator-2.11-preview/base.Dockerfile
Expand Up @@ -2,7 +2,7 @@
# It is built with dependencies that take a while to download, thus speeding
# up ansible deploy jobs.

FROM registry.access.redhat.com/ubi8/ubi:8.7
FROM registry.access.redhat.com/ubi8/ubi:8.8
ARG TARGETARCH

# Label this image with the repo and commit that built it, for freshmaking purposes.
Expand Down
2 changes: 1 addition & 1 deletion images/ansible-operator/base.Dockerfile
Expand Up @@ -2,7 +2,7 @@
# It is built with dependencies that take a while to download, thus speeding
# up ansible deploy jobs.

FROM registry.access.redhat.com/ubi8/ubi:8.7
FROM registry.access.redhat.com/ubi8/ubi:8.8
ARG TARGETARCH

# Label this image with the repo and commit that built it, for freshmaking purposes.
Expand Down
2 changes: 1 addition & 1 deletion images/custom-scorecard-tests/Dockerfile
Expand Up @@ -17,7 +17,7 @@ COPY . .
RUN GOOS=linux GOARCH=$TARGETARCH make build/custom-scorecard-tests

# Final image.
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8

ENV HOME=/opt/custom-scorecard-tests \
USER_NAME=custom-scorecard-tests \
Expand Down
2 changes: 1 addition & 1 deletion images/helm-operator/Dockerfile
Expand Up @@ -17,7 +17,7 @@ COPY . .
RUN GOOS=linux GOARCH=$TARGETARCH make build/helm-operator

# Final image.
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8

ENV HOME=/opt/helm \
USER_NAME=helm \
Expand Down
2 changes: 1 addition & 1 deletion images/operator-sdk/Dockerfile
Expand Up @@ -17,7 +17,7 @@ COPY . .
RUN GOOS=linux GOARCH=$TARGETARCH make build/operator-sdk

# Final image.
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8

ENV GO_VERSION 1.19

Expand Down
2 changes: 1 addition & 1 deletion images/scorecard-test/Dockerfile
Expand Up @@ -17,7 +17,7 @@ COPY . .
RUN GOOS=linux GOARCH=$TARGETARCH make build/scorecard-test

# Final image.
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8

ENV HOME=/opt/scorecard-test \
USER_NAME=scorecard-test \
Expand Down
Expand Up @@ -24,7 +24,7 @@ Example:
spec:
containers:
- name: curl-example
image: registry.access.redhat.com/ubi8/ubi:8.4-209
image: registry.access.redhat.com/ubi8/ubi:8.8
command: ["curl"]
args: ["http://example.com/job-request"]
env:
Expand Down