Skip to content

Commit e976a2f

Browse files
committed
Rename containers
1 parent 43de3c4 commit e976a2f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

04_setup_ironic.sh

Lines changed: 3 additions & 3 deletions
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 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
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
@@ -90,7 +90,7 @@ sudo podman run -d --net host --privileged --name httpd --pod ironic-pod \
9090
sudo podman run -d --net host --privileged --name ipa-downloader --pod ironic-pod \
9191
-v $IRONIC_DATA_DIR:/shared ${IRONIC_IPA_DOWNLOADER_IMAGE} /usr/local/bin/get-resource.sh
9292

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 \
9494
-v $IRONIC_DATA_DIR:/shared ${IRONIC_MACHINE_OS_DOWNLOADER_IMAGE} /usr/local/bin/get-resource.sh $MACHINE_OS_IMAGE_URL
9595

9696
if [ "$NODES_PLATFORM" = "libvirt" ]; then
@@ -106,7 +106,7 @@ fi
106106

107107
# Wait for the downloader containers to finish, if they are updating an existing cache
108108
# 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
110110

111111
# Wait for images to be downloaded/ready
112112
while ! curl --fail http://localhost/images/rhcos-ootpa-latest.qcow2.md5sum ; do sleep 1 ; done

run_ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function getlogs(){
1111
# Grab the host journal
1212
sudo journalctl > $LOGDIR/bootstrap-host-system.journal
1313

14-
for c in httpd coreos-downloader ipa-downloader ; do
14+
for c in httpd machine-os-downloader ipa-downloader ; do
1515
sudo podman logs $c > $LOGDIR/$c.log || true
1616
done
1717

0 commit comments

Comments
 (0)