File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ if [ -f assets/templates/99_local-registry.yaml ] ; then
56
56
fi
57
57
rm -f $DOCKERFILE
58
58
59
- for name in ironic ironic-api ironic-conductor ironic-inspector dnsmasq httpd mariadb ipa-downloader coreos -downloader vbmc sushy-tools; do
59
+ for name in ironic ironic-api ironic-conductor ironic-inspector dnsmasq httpd mariadb ipa-downloader machine-os -downloader vbmc sushy-tools; do
60
60
sudo podman ps | grep -w " $name $" && sudo podman kill $name
61
61
sudo podman ps --all | grep -w " $name $" && sudo podman rm $name -f
62
62
done
@@ -90,7 +90,7 @@ sudo podman run -d --net host --privileged --name httpd --pod ironic-pod \
90
90
sudo podman run -d --net host --privileged --name ipa-downloader --pod ironic-pod \
91
91
-v $IRONIC_DATA_DIR :/shared ${IRONIC_IPA_DOWNLOADER_IMAGE} /usr/local/bin/get-resource.sh
92
92
93
- sudo podman run -d --net host --privileged --name coreos -downloader --pod ironic-pod \
93
+ sudo podman run -d --net host --privileged --name machine-os -downloader --pod ironic-pod \
94
94
-v $IRONIC_DATA_DIR :/shared ${IRONIC_MACHINE_OS_DOWNLOADER_IMAGE} /usr/local/bin/get-resource.sh $MACHINE_OS_IMAGE_URL
95
95
96
96
if [ " $NODES_PLATFORM " = " libvirt" ]; then
106
106
107
107
# Wait for the downloader containers to finish, if they are updating an existing cache
108
108
# the checks below will pass because old data exists
109
- sudo podman wait -i 1000 ipa-downloader coreos -downloader
109
+ sudo podman wait -i 1000 ipa-downloader machine-os -downloader
110
110
111
111
# Wait for images to be downloaded/ready
112
112
while ! curl --fail http://localhost/images/rhcos-ootpa-latest.qcow2.md5sum ; do sleep 1 ; done
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ function getlogs(){
11
11
# Grab the host journal
12
12
sudo journalctl > $LOGDIR /bootstrap-host-system.journal
13
13
14
- for c in httpd coreos -downloader ipa-downloader ; do
14
+ for c in httpd machine-os -downloader ipa-downloader ; do
15
15
sudo podman logs $c > $LOGDIR /$c .log || true
16
16
done
17
17
You can’t perform that action at this time.
0 commit comments