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
Convert OS Image cache to use new install-config interface
Since openshift/installer#2757
merged we can mirror the installer referenced images directly
to simulate typical disconnected install scenarios.
This removes some complexity as we no longer need to run the
downloader container on the host, only expose the unprocessed images
via http.
Note this will work with latest 4.4. builds but not 4.3 until
openshift/installer#2835 lands
Copy file name to clipboardexpand all lines: utils.sh
+1-2
Original file line number
Diff line number
Diff line change
@@ -190,9 +190,8 @@ function bmo_config_map {
190
190
191
191
mkdir -p ocp/deploy
192
192
cp $SCRIPTDIR/metal3-config.yaml ocp/deploy
193
-
sed -i "s#__MACHINE_OS_IMAGE_URL__#${MACHINE_OS_IMAGE_URL}#" ocp/deploy/metal3-config.yaml
193
+
sed -i "s#__MACHINE_OS_IMAGE_URL__#http://${MIRROR_IP}/images/${MACHINE_OS_IMAGE_NAME}?sha256=${MACHINE_OS_BOOTSTRAP_IMAGE_SHA256}#" ocp/deploy/metal3-config.yaml
194
194
sed -i "s#provisioning_interface: \"ens3\"#provisioning_interface: \"${CLUSTER_PRO_IF}\"#" ocp/deploy/metal3-config.yaml
195
-
sed -i "s#cache_url: \"http://192.168.111.1/images\"#cache_url: \"http://${BAREMETAL_IP}/images\"#" ocp/deploy/metal3-config.yaml
0 commit comments