Skip to content

Commit ac99596

Browse files
author
Steven Hardy
committed
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
1 parent 04bcba7 commit ac99596

File tree

5 files changed

+40
-21
lines changed

5 files changed

+40
-21
lines changed

04_setup_ironic.sh

+18-12
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ if [ -f assets/templates/99_local-registry.yaml ] ; then
5656
fi
5757
rm -f $DOCKERFILE
5858

59-
for name in ironic ironic-api ironic-conductor ironic-inspector dnsmasq httpd mariadb ipa-downloader machine-os-downloader vbmc sushy-tools; do
59+
for name in ironic ironic-api ironic-conductor ironic-inspector dnsmasq httpd mariadb ipa-downloader vbmc sushy-tools; do
6060
sudo podman ps | grep -w "$name$" && sudo podman kill $name
6161
sudo podman ps --all | grep -w "$name$" && sudo podman rm $name -f
6262
done
@@ -69,30 +69,35 @@ fi
6969
# Create pod
7070
sudo podman pod create -n ironic-pod
7171

72-
# Pull the rhcos-downloder image to use from the release, this gets change
73-
# to use IRONIC_MACHINE_OS_DOWNLOADER_LOCAL_IMAGE if present
74-
IRONIC_MACHINE_OS_DOWNLOADER_IMAGE=$(oc adm release info --registry-config $REGISTRY_AUTH_FILE $OPENSHIFT_RELEASE_IMAGE --image-for=ironic-machine-os-downloader)
75-
7672
IRONIC_IMAGE=${IRONIC_LOCAL_IMAGE:-$IRONIC_IMAGE}
7773
IRONIC_IPA_DOWNLOADER_IMAGE=${IRONIC_IPA_DOWNLOADER_LOCAL_IMAGE:-$IRONIC_IPA_DOWNLOADER_IMAGE}
78-
IRONIC_MACHINE_OS_DOWNLOADER_IMAGE=${IRONIC_MACHINE_OS_DOWNLOADER_LOCAL_IMAGE:-$IRONIC_MACHINE_OS_DOWNLOADER_IMAGE}
7974

80-
for IMAGE in ${IRONIC_IMAGE} ${IRONIC_IPA_DOWNLOADER_IMAGE} ${IRONIC_MACHINE_OS_DOWNLOADER_IMAGE} ${VBMC_IMAGE} ${SUSHY_TOOLS_IMAGE} ; do
75+
for IMAGE in ${IRONIC_IMAGE} ${IRONIC_IPA_DOWNLOADER_IMAGE} ${VBMC_IMAGE} ${SUSHY_TOOLS_IMAGE} ; do
8176
sudo -E podman pull $([[ $IMAGE =~ $LOCAL_REGISTRY_ADDRESS.* ]] && echo "--tls-verify=false" ) $IMAGE
8277
done
8378

8479
rm -rf $REGISTRY_AUTH_FILE
8580

81+
CACHED_MACHINE_OS_IMAGE="${IRONIC_DATA_DIR}/html/images/${MACHINE_OS_IMAGE_NAME}"
82+
if [ ! -f "${CACHED_MACHINE_OS_IMAGE}" ]; then
83+
curl -g --insecure -L -o "${CACHED_MACHINE_OS_IMAGE}" "${MACHINE_OS_IMAGE_URL}"
84+
echo "${MACHINE_OS_IMAGE_SHA256} ${CACHED_MACHINE_OS_IMAGE}" | tee ${CACHED_MACHINE_OS_IMAGE}.sha256sum
85+
sha256sum --strict --check ${CACHED_MACHINE_OS_IMAGE}.sha256sum
86+
fi
87+
CACHED_MACHINE_OS_BOOTSTRAP_IMAGE="${IRONIC_DATA_DIR}/html/images/${MACHINE_OS_BOOTSTRAP_IMAGE_NAME}"
88+
if [ ! -f "${CACHED_MACHINE_OS_BOOTSTRAP_IMAGE}" ]; then
89+
curl -g --insecure -L -o "${CACHED_MACHINE_OS_BOOTSTRAP_IMAGE}" "${MACHINE_OS_BOOTSTRAP_IMAGE_URL}"
90+
echo "${MACHINE_OS_BOOTSTRAP_IMAGE_SHA256} ${CACHED_MACHINE_OS_BOOTSTRAP_IMAGE}" | tee ${CACHED_MACHINE_OS_BOOTSTRAP_IMAGE}.sha256sum
91+
sha256sum --strict --check ${CACHED_MACHINE_OS_BOOTSTRAP_IMAGE}.sha256sum
92+
fi
93+
8694
# cached images to the bootstrap VM
8795
sudo podman run -d --net host --privileged --name httpd --pod ironic-pod \
8896
-v $IRONIC_DATA_DIR:/shared --entrypoint /bin/runhttpd ${IRONIC_IMAGE}
8997

9098
sudo podman run -d --net host --privileged --name ipa-downloader --pod ironic-pod \
9199
-v $IRONIC_DATA_DIR:/shared ${IRONIC_IPA_DOWNLOADER_IMAGE} /usr/local/bin/get-resource.sh
92100

93-
sudo podman run -d --net host --privileged --name machine-os-downloader --pod ironic-pod \
94-
-v $IRONIC_DATA_DIR:/shared ${IRONIC_MACHINE_OS_DOWNLOADER_IMAGE} /usr/local/bin/get-resource.sh $MACHINE_OS_IMAGE_URL
95-
96101
if [ "$NODES_PLATFORM" = "libvirt" ]; then
97102
sudo podman run -d --net host --privileged --name vbmc --pod ironic-pod \
98103
-v "$WORKING_DIR/virtualbmc/vbmc":/root/.vbmc -v "/root/.ssh":/root/ssh \
@@ -106,10 +111,11 @@ fi
106111

107112
# Wait for the downloader containers to finish, if they are updating an existing cache
108113
# the checks below will pass because old data exists
109-
sudo podman wait -i 1000 ipa-downloader machine-os-downloader
114+
sudo podman wait -i 1000 ipa-downloader
110115

111116
# Wait for images to be downloaded/ready
112-
while ! curl --fail http://localhost/images/rhcos-ootpa-latest.qcow2.md5sum ; do sleep 1 ; done
117+
while ! curl --fail http://localhost/images/${MACHINE_OS_IMAGE_NAME}.sha256sum ; do sleep 1 ; done
118+
while ! curl --fail http://localhost/images/${MACHINE_OS_BOOTSTRAP_IMAGE_NAME}.sha256sum ; do sleep 1 ; done
113119
while ! curl --fail --head http://localhost/images/ironic-python-agent.initramfs ; do sleep 1; done
114120
while ! curl --fail --head http://localhost/images/ironic-python-agent.tar.headers ; do sleep 1; done
115121
while ! curl --fail --head http://localhost/images/ironic-python-agent.kernel ; do sleep 1; done

common.sh

+8-6
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ export VM_EXTRADISKS=${VM_EXTRADISKS:-"false"}
123123
# Ironic vars (Image can be use <NAME>_LOCAL_IMAGE to override)
124124
export IRONIC_IMAGE="quay.io/metal3-io/ironic:master"
125125
export IRONIC_IPA_DOWNLOADER_IMAGE="quay.io/metal3-io/ironic-ipa-downloader:master"
126-
export IRONIC_DATA_DIR="$WORKING_DIR/ironic"
126+
export IRONIC_DATA_DIR="${WORKING_DIR}/ironic"
127+
export IRONIC_IMAGES_DIR="${IRONIC_DATA_DIR}/html/images"
127128

128129
# VBMC and Redfish images
129130
export VBMC_IMAGE=${VBMC_IMAGE:-"quay.io/metal3-io/vbmc"}
@@ -197,11 +198,12 @@ if [ ! -d "$WORKING_DIR" ]; then
197198
chmod 755 "$WORKING_DIR"
198199
fi
199200

200-
if [ ! -d "$IRONIC_DATA_DIR" ]; then
201-
echo "Creating Ironic Data Dir"
202-
sudo mkdir "$IRONIC_DATA_DIR"
203-
sudo chown "${USER}:${USER}" "$IRONIC_DATA_DIR"
204-
chmod 755 "$IRONIC_DATA_DIR"
201+
if [ ! -d "$IRONIC_IMAGES_DIR" ]; then
202+
echo "Creating Ironic Images Dir"
203+
sudo mkdir -p "$IRONIC_IMAGES_DIR"
204+
sudo chown -R "${USER}:${USER}" "$IRONIC_DATA_DIR"
205+
sudo find $IRONIC_DATA_DIR -type d -print0 | xargs -0 chmod 755
206+
sudo chmod -R +r $IRONIC_DATA_DIR
205207
fi
206208

207209
# Defaults the variable to enable testing a custom machine-api-operator image

ocp_install_env.sh

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export CLUSTER_DOMAIN="${CLUSTER_NAME}.${BASE_DOMAIN}"
66
export SSH_PUB_KEY="${SSH_PUB_KEY:-$(cat $HOME/.ssh/id_rsa.pub)}"
77
export NETWORK_TYPE=${NETWORK_TYPE:-"OpenShiftSDN"}
88
export EXTERNAL_SUBNET=${EXTERNAL_SUBNET:-"192.168.111.0/24"}
9+
export MIRROR_IP=${MIRROR_IP:-"192.168.111.1"}
910
export DNS_VIP=${DNS_VIP:-"192.168.111.2"}
1011

1112
function extract_command() {
@@ -96,6 +97,8 @@ controlPlane:
9697
baremetal: {}
9798
platform:
9899
baremetal:
100+
bootstrapOSImage: http://${MIRROR_IP}/images/${MACHINE_OS_BOOTSTRAP_IMAGE_NAME}?sha256=${MACHINE_OS_BOOTSTRAP_IMAGE_SHA256}
101+
clusterOSImage: http://${MIRROR_IP}/images/${MACHINE_OS_IMAGE_NAME}?sha256=${MACHINE_OS_BOOTSTRAP_IMAGE_SHA256}
99102
dnsVIP: ${DNS_VIP}
100103
hosts:
101104
$(master_node_map_to_install_config $NUM_MASTERS)

rhcos.sh

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ OPENSHIFT_INSTALLER_MACHINE_OS=${OPENSHIFT_INSTALLER_MACHINE_OS:-https://raw.git
66

77
# Get the rhcos.json for that commit, and find the baseURI and openstack image path
88
MACHINE_OS_IMAGE_JSON=$(curl "${OPENSHIFT_INSTALLER_MACHINE_OS}")
9+
910
export MACHINE_OS_INSTALLER_IMAGE_URL=$(echo "${MACHINE_OS_IMAGE_JSON}" | jq -r '.baseURI + .images.openstack.path')
11+
export MACHINE_OS_INSTALLER_IMAGE_SHA256=$(echo "${MACHINE_OS_IMAGE_JSON}" | jq -r '.images.openstack.sha256')
1012
export MACHINE_OS_IMAGE_URL=${MACHINE_OS_IMAGE_URL:-${MACHINE_OS_INSTALLER_IMAGE_URL}}
11-
export MACHINE_OS_IMAGE_FILENAME_LATEST="rhcos-ootpa-latest.qcow2"
13+
export MACHINE_OS_IMAGE_NAME=$(basename ${MACHINE_OS_IMAGE_URL})
14+
export MACHINE_OS_IMAGE_SHA256=${MACHINE_OS_IMAGE_SHA256:-${MACHINE_OS_INSTALLER_IMAGE_SHA256}}
15+
16+
export MACHINE_OS_INSTALLER_BOOTSTRAP_IMAGE_URL=$(echo "${MACHINE_OS_IMAGE_JSON}" | jq -r '.baseURI + .images.qemu.path')
17+
export MACHINE_OS_INSTALLER_BOOTSTRAP_IMAGE_SHA256=$(echo "${MACHINE_OS_IMAGE_JSON}" | jq -r '.images.qemu.sha256')
18+
export MACHINE_OS_BOOTSTRAP_IMAGE_URL=${MACHINE_OS_BOOTSTRAP_IMAGE_URL:-${MACHINE_OS_INSTALLER_BOOTSTRAP_IMAGE_URL}}
19+
export MACHINE_OS_BOOTSTRAP_IMAGE_NAME=$(basename ${MACHINE_OS_BOOTSTRAP_IMAGE_URL})
20+
export MACHINE_OS_BOOTSTRAP_IMAGE_SHA256=${MACHINE_OS_BOOTSTRAP_IMAGE_SHA256:-${MACHINE_OS_INSTALLER_BOOTSTRAP_IMAGE_SHA256}}

utils.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,8 @@ function bmo_config_map {
190190

191191
mkdir -p ocp/deploy
192192
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
194194
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
196195

197196
cp ocp/deploy/metal3-config.yaml assets/generated/99_metal3-config.yaml
198197
}

0 commit comments

Comments
 (0)