Merge "ovn migration: Turn validations off by default"
This commit is contained in:
commit
720a1c3de9
@ -136,7 +136,7 @@ Perform the following steps in the undercloud
|
||||
* VALIDATE_MIGRATION - Create migration resources to validate the
|
||||
migration. The migration script, before starting the migration, boot a
|
||||
server and validates that the server is reachable after the migration.
|
||||
Default: True.
|
||||
Default: False
|
||||
|
||||
* SERVER_USER_NAME - User name to use for logging into the migration
|
||||
instances.
|
||||
|
@ -0,0 +1,12 @@
|
||||
---
|
||||
other:
|
||||
- |
|
||||
The OVN migration performs validation by default. This validation means an
|
||||
instance is spawned and is tested by simple ping after the migration is
|
||||
finished. Also it tries to create new workload post migration. This is
|
||||
useful for very simple scenarios when migration is tested but is not
|
||||
really useful in production since likely the production envrionments
|
||||
already have running workloads. It makes more sense to require the
|
||||
validation explicitly rather than implicitly run it as the migration
|
||||
is mostly intended for production. The VALIDATE_MIGRATION now defaults to
|
||||
False and needs to be changed to True if validation upon request.
|
@ -39,7 +39,7 @@ LANG=C
|
||||
: ${IMAGE_NAME:=cirros}
|
||||
: ${FLAVOR_NAME:=ovn-migration}
|
||||
: ${SERVER_USER_NAME:=cirros}
|
||||
: ${VALIDATE_MIGRATION:=True}
|
||||
: ${VALIDATE_MIGRATION:=False}
|
||||
: ${DHCP_RENEWAL_TIME:=30}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user