Merge "Read default cirros version from stackrc"

This commit is contained in:
Zuul 2021-04-20 16:00:26 +00:00 committed by Gerrit Code Review
commit 0af9a9fdf8
2 changed files with 9 additions and 4 deletions

View File

@ -7,7 +7,12 @@ fi
# Whether configure the nodes to boot in Legacy BIOS or UEFI mode. Accepted
# values are: "bios" or "uefi", defaults to "bios".
IRONIC_BOOT_MODE=${IRONIC_BOOT_MODE:-bios}
CIRROS_VERSION=${CIRROS_VERSION:-"0.5.1"}
CIRROS_VERSION_DEVSTACK=$(set +o xtrace &&
source $TOP_DIR/stackrc &&
echo $CIRROS_VERSION)
CIRROS_VERSION=${CIRROS_VERSION:-$CIRROS_VERSION_DEVSTACK}
IRONIC_DEFAULT_IMAGE_NAME=cirros-${CIRROS_VERSION}-x86_64-uec

View File

@ -277,10 +277,10 @@ class DracWSManBIOS(base.BIOSInterface):
time = timeutils.utcnow(with_timezone=True
) - timeutils.parse_isotime(str(
factory_reset_time))
time_difference = time.seconds
time_difference = time.total_seconds()
LOG.debug("Factory resetting node %(node_uuid)s "
"time difference %(time_diffrence)s ",
{"node_uuid": task.node.uuid, "time_diffrence":
"time difference %(time_difference)s ",
{"node_uuid": task.node.uuid, "time_difference":
time_difference})
if time_difference > CONF.drac.bios_factory_reset_timeout: