Skip to content

Commit b2b03d5

Browse files
committed
Fix failing forklift index build (#1666)
The OPM 1.53.0 has problem, once there will be new version with the fix we can bump to latest. operator-framework/operator-registry#1664 Ref: https://redhat-internal.slack.com/archives/C074JM28DTP/p1746458556603619 --------- Signed-off-by: Martin Necas <[email protected]>
1 parent d6cd275 commit b2b03d5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

build/forklift-operator-index/Containerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
FROM quay.io/operator-framework/opm:latest AS opm
1+
# The OPM 1.53.0 has problem, once there will be new version with the fix we can bump to latest.
2+
# https://github.com/operator-framework/operator-registry/pull/1664
3+
# Ref: https://redhat-internal.slack.com/archives/C074JM28DTP/p1746458556603619
4+
FROM quay.io/operator-framework/opm:v1.52.0 AS opm
25
FROM registry.access.redhat.com/ubi9-minimal:9.5-1739420147 AS builder
36
ARG CHANNELS="development"
47
ARG DEFAULT_CHANNEL="development"
@@ -15,7 +18,7 @@ WORKDIR /app
1518
RUN cat catalog/operator.yml | envsubst > operator.yaml
1619
RUN opm render ${OPERATOR_BUNDLE_IMAGE} ${OPM_OPTS} -o yaml >> operator.yaml
1720

18-
FROM quay.io/operator-framework/opm:latest
21+
FROM quay.io/operator-framework/opm:v1.52.0
1922

2023
COPY --from=builder /app/operator.yaml /configs/operator.yaml
2124

0 commit comments

Comments
 (0)