
Users can now install stx-openstack in an automated manner by using the --openstack-helm-location parameter when running the script installation, and by increasing the node storage to at least 360 GB. Story: 2005051 Task: 48149 Change-Id: I2eade54dca3328fa5fe5282355e9a1b9f33b059f Signed-off-by: Tomás Barros <tomas.barros@encora.com>
24 lines
492 B
Python
24 lines
492 B
Python
#!/usr/bin/python3
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
"""
|
|
This module contains the HostTimeout class, which provides timeout values (in seconds)
|
|
for various operations on a host.
|
|
"""
|
|
|
|
# pylint: disable=R0903
|
|
|
|
|
|
class HostTimeout:
|
|
CONTROLLER_UNLOCK = 3600 + 1800
|
|
REBOOT = 900
|
|
INSTALL = 3600
|
|
LAB_INSTALL = 3600
|
|
HOST_INSTALL = 3600
|
|
LAB_CONFIG = 5400
|
|
INSTALL_PATCHES = 900
|
|
NORMAL_OP = 90
|
|
REATTEMPT_DELAY = [0, 2, 5, 10, 30, 60, 2*60, 3*60, 5*60, 10*60]
|