Skip to content

Commit c47e453

Browse files
authored
Update images to ubi9 (#1355)
Signed-off-by: dkwon17 <[email protected]>
1 parent 0176338 commit c47e453

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

build/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# limitations under the License.
1414
#
1515

16-
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8/go-toolset
17-
FROM registry.access.redhat.com/ubi8/go-toolset:1.22.7-5 as builder
16+
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
17+
FROM registry.access.redhat.com/ubi9/go-toolset:1.22.7-1733160835 as builder
1818
ENV GOPATH=/go/
1919
USER root
2020
WORKDIR /devworkspace-operator
@@ -33,8 +33,8 @@ COPY . .
3333
RUN make compile-devworkspace-controller
3434
RUN make compile-webhook-server
3535

36-
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8-minimal
37-
FROM registry.access.redhat.com/ubi8-minimal:8.10-1130
36+
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9-minimal
37+
FROM registry.access.redhat.com/ubi9-minimal:9.5-1731593028
3838
RUN microdnf -y update && microdnf clean all && rm -rf /var/cache/yum && echo "Installed Packages" && rpm -qa | sort -V && echo "End Of Installed Packages"
3939
WORKDIR /
4040
COPY --from=builder /devworkspace-operator/_output/bin/devworkspace-controller /usr/local/bin/devworkspace-controller

deploy/bundle/manifests/devworkspace-operator.clusterserviceversion.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/deployment/kubernetes/combined.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/deployment/kubernetes/objects/devworkspace-controller-manager.Deployment.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/deployment/openshift/combined.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/deployment/openshift/objects/devworkspace-controller-manager.Deployment.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/templates/components/csv/clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ spec:
103103
name: kube_rbac_proxy
104104
- image: quay.io/devfile/project-clone:next
105105
name: project_clone
106-
- image: registry.access.redhat.com/ubi8-micro:8.8-1
106+
- image: registry.access.redhat.com/ubi9/ubi-micro:9.5-1733126338
107107
name: pvc_cleanup_job
108108
- image: quay.io/eclipse/che-workspace-data-sync-storage:0.0.1
109109
name: async_storage_server

deploy/templates/components/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ spec:
8585
- name: RELATED_IMAGE_devworkspace_webhook_server
8686
value: "quay.io/devfile/devworkspace-controller:next"
8787
- name: RELATED_IMAGE_pvc_cleanup_job
88-
value: "registry.access.redhat.com/ubi8-micro:8.8-1"
88+
value: "registry.access.redhat.com/ubi9/ubi-micro:9.5-1733126338"
8989
- name: RELATED_IMAGE_async_storage_server
9090
value: "quay.io/eclipse/che-workspace-data-sync-storage:0.0.1"
9191
- name: RELATED_IMAGE_async_storage_sidecar

project-clone/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
#
1515

1616
# Build the manager binary
17-
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8/go-toolset
18-
FROM registry.access.redhat.com/ubi8/go-toolset:1.22.7-5 as builder
17+
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
18+
FROM registry.access.redhat.com/ubi9/go-toolset:1.22.7-1733160835 as builder
1919
ENV GOPATH=/go/
2020
USER root
2121
WORKDIR /project-clone
@@ -36,8 +36,8 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build \
3636
-asmflags all=-trimpath=/ \
3737
project-clone/main.go
3838

39-
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8-minimal
40-
FROM registry.access.redhat.com/ubi8-minimal:8.10-1130
39+
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9-minimal
40+
FROM registry.access.redhat.com/ubi9-minimal:9.5-1731593028
4141
RUN microdnf -y update && microdnf install -y time git git-lfs && microdnf clean all && rm -rf /var/cache/yum && echo "Installed Packages" && rpm -qa | sort -V && echo "End Of Installed Packages"
4242
WORKDIR /
4343
COPY --from=builder /project-clone/_output/bin/project-clone /usr/local/bin/project-clone

0 commit comments

Comments
 (0)