Default enable run_validation

It was default enabled on the gate for a long time.
The option is  required to run api tests stability in case the
guest cooperation required for example volume/interface detach.

https://etherpad.openstack.org/p/handling-of-interface-attach-detach-hotplug-unplug

Change-Id: I9fd433fe249cc80f6799ff240df692a5ce9275a5
This commit is contained in:
Attila Fazekas 2018-09-12 17:30:01 -06:00
parent 3674fb1382
commit 489e90f1ed
2 changed files with 14 additions and 2 deletions

View File

@ -0,0 +1,10 @@
---
upgrade:
- |
``CONF.validation.run_validation`` default enabled.
This option required to be set ``true`` in order to run api tests
stability when the guest cooperation required. For example when
the guest needs react on Volume/Interface detach.
The ssh test makes sure the VM is alive and ready
when the detach needs to happen.
The option was enabled on the gate for a long time.

View File

@ -672,9 +672,11 @@ validation_group = cfg.OptGroup(name='validation',
ValidationGroup = [
cfg.BoolOpt('run_validation',
default=False,
default=True,
help='Enable ssh on created servers and creation of additional'
' validation resources to enable remote access'),
' validation resources to enable remote access.'
' In case the guest does not support ssh set it'
' to false'),
cfg.BoolOpt('security_group',
default=True,
help='Enable/disable security groups.'),