Add comments for [deploy|rescue]_interface

Add comments to explain how deploy_interface and rescue_interface
variables are used in the standalone tests.

Change-Id: I1b9175fdc52c4594445d47235ed11a5f6635a02e
This commit is contained in:
Ruby Loo 2018-04-17 20:00:55 +00:00
parent ef3756460c
commit 1a0a80e60a
1 changed files with 8 additions and 2 deletions

View File

@ -314,10 +314,16 @@ class BaremetalStandaloneScenarioTest(BaremetalStandaloneManager):
# The node driver to use in the test
driver = None
# The deploy interface to use by the HW type
# The deploy interface to use by the HW type. The deploy interface of
# the node used in the test will be set to this value. If set to None,
# the node will retain its existing deploy_interface value (which may have
# been set via a different test).
deploy_interface = None
# The rescue interface to use by the HW type
# The rescue interface to use by the HW type. The rescue interface of
# the node used in the test will be set to this value. If set to None,
# the node will retain its existing rescue_interface value (which may have
# been set via a different test).
rescue_interface = None
# User image ref to boot node with.