You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CORS-3250: images: use pre-built KAS/etcd binaries
We copy pre-built binaries from the `-artifacts` images when we want
statically linked binaries and from the regular etcd/hyperkube images
for dynamically linked binaries.
This is necessary to have capi and capi providers included in the
installer images both for CI and for the release payload.
Copy file name to clipboardExpand all lines: images/libvirt/Dockerfile.ci
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,18 @@
2
2
# It builds an image containing openshift-install and nss-wrapper for remote deployments, as well as the google cloud-sdk for nested GCE environments and
3
3
# oc for getting assets from an existing cluster to spin up multi-architecture compute clusters on libvirt.
4
4
5
+
# The binaries in these images are dynamically linked
6
+
FROM registry.ci.openshift.org/ocp/4.16:etcd AS etcd
7
+
FROM registry.ci.openshift.org/ocp/4.16:hyperkube AS kas
8
+
5
9
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.21-openshift-4.16 AS builder
0 commit comments