c7fe51e79b
Tempest tests were not appropriate for driver-assisted migration, so this was fixed. Also, improved docstrings and fixed workflow for drivers when implementing 2-phase migration to be accurate with tempest and handle AZs, which were previously locked to the source share's AZ. Driver-assisted migration now creates an additional share instance to better handle and support driver methods. Updated allow_access and deny_access APIs to allow users to mount migrating shares before issuing 'migration-complete'. APIImpact Closes-bug: #1594922 Change-Id: If4bfaf7e9d963b83c13a6fea241c2eda14f7f409
53 lines
2.1 KiB
Python
53 lines
2.1 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
STATUS_ERROR = 'error'
|
|
STATUS_AVAILABLE = 'available'
|
|
STATUS_ERROR_DELETING = 'error_deleting'
|
|
|
|
TEMPEST_MANILA_PREFIX = 'tempest-manila'
|
|
REPLICATION_STYLE_READABLE = 'readable'
|
|
REPLICATION_STYLE_WRITABLE = 'writable'
|
|
REPLICATION_STYLE_DR = 'dr'
|
|
REPLICATION_TYPE_CHOICES = (
|
|
REPLICATION_STYLE_READABLE,
|
|
REPLICATION_STYLE_WRITABLE,
|
|
REPLICATION_STYLE_DR,
|
|
)
|
|
REPLICATION_PROMOTION_CHOICES = (
|
|
REPLICATION_STYLE_READABLE,
|
|
REPLICATION_STYLE_DR,
|
|
)
|
|
REPLICATION_STATE_ACTIVE = 'active'
|
|
REPLICATION_STATE_IN_SYNC = 'in_sync'
|
|
REPLICATION_STATE_OUT_OF_SYNC = 'out_of_sync'
|
|
|
|
RULE_STATE_ACTIVE = 'active'
|
|
RULE_STATE_OUT_OF_SYNC = 'out_of_sync'
|
|
RULE_STATE_ERROR = 'error'
|
|
|
|
TASK_STATE_MIGRATION_STARTING = 'migration_starting'
|
|
TASK_STATE_MIGRATION_IN_PROGRESS = 'migration_in_progress'
|
|
TASK_STATE_MIGRATION_COMPLETING = 'migration_completing'
|
|
TASK_STATE_MIGRATION_SUCCESS = 'migration_success'
|
|
TASK_STATE_MIGRATION_ERROR = 'migration_error'
|
|
TASK_STATE_MIGRATION_CANCELLED = 'migration_cancelled'
|
|
TASK_STATE_MIGRATION_DRIVER_STARTING = 'migration_driver_starting'
|
|
TASK_STATE_MIGRATION_DRIVER_IN_PROGRESS = 'migration_driver_in_progress'
|
|
TASK_STATE_MIGRATION_DRIVER_PHASE1_DONE = 'migration_driver_phase1_done'
|
|
TASK_STATE_DATA_COPYING_STARTING = 'data_copying_starting'
|
|
TASK_STATE_DATA_COPYING_IN_PROGRESS = 'data_copying_in_progress'
|
|
TASK_STATE_DATA_COPYING_COMPLETING = 'data_copying_completing'
|
|
TASK_STATE_DATA_COPYING_COMPLETED = 'data_copying_completed'
|
|
TASK_STATE_DATA_COPYING_CANCELLED = 'data_copying_cancelled'
|
|
TASK_STATE_DATA_COPYING_ERROR = 'data_copying_error'
|