File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ RUN DEFAULT_ARCH="$(go env GOHOSTARCH)" hack/build-node-joiner.sh
19
19
20
20
FROM registry.ci.openshift.org/ocp/4.19:base-rhel9
21
21
22
+ COPY --from=builder /go/src/github.com/openshift/installer/images/baremetal/manifests /manifests
22
23
COPY --from=builder /go/src/github.com/openshift/installer/bin/openshift-install /bin/openshift-install
23
24
24
25
RUN dnf upgrade -y && \
@@ -35,4 +36,6 @@ RUN mkdir /output && chown 1000:1000 /output
35
36
USER 1000:1000
36
37
ENV HOME /output
37
38
WORKDIR /output
39
+ # We're not really an operator, we're just getting some data into the release image.
40
+ LABEL io.openshift.release.operator=true
38
41
ENTRYPOINT ["/bin/openshift-install"]
Original file line number Diff line number Diff line change
1
+ ---
2
+ apiVersion : v1
3
+ kind : ConfigMap
4
+ metadata :
5
+ name : installer-images
6
+ namespace : openshift-config
7
+ annotations :
8
+ include.release.openshift.io/ibm-cloud-managed : " true"
9
+ include.release.openshift.io/self-managed-high-availability : " true"
10
+ include.release.openshift.io/single-node-developer : " true"
11
+ data :
12
+ images.json : >
13
+ {
14
+ "installer": "registry.ci.openshift.org/openshift:baremetal-installer",
15
+ "machine-os-images": "registry.ci.openshift.org/openshift:machine-os-images"
16
+ }
Original file line number Diff line number Diff line change
1
+ kind: ImageStream
2
+ apiVersion: image.openshift.io/v1
3
+ spec:
4
+ tags:
5
+ - name: baremetal-installer
6
+ from:
7
+ kind: DockerImage
8
+ name: registry.ci.openshift.org/openshift:baremetal-installer
9
+ - name: machine-os-images
10
+ from:
11
+ kind: DockerImage
12
+ name: registry.ci.openshift.org/openshift:machine-os-images
You can’t perform that action at this time.
0 commit comments