Remove deprecated code
Remove: * '$rally use' cli command entirely * Depraceted api: create_deploy, destroy_deploy, recreate_deploy, task_template_render, create_task, task_validate, start_task, abort_task, delete_task, verify, install_tempest. * Deployment cli parameter --uuid. '$rally deployment --uuid' * Task cli parameters --deploy-id, --uuid. * Show cli parameters --deploy-id. * Verify cli parameter --deploy-id. * Manage cli parameter --deploy-id. * Deprecated parameter from objects/endpoints.py admin_port. * FailureRateDeprecated class from plugins/common/sla/failure_rate.py * Depraceted parameters min_size, max_size, volime_size at plugins/ openstack/scenarios/cinder/volumes.py. Now U should use size dict argument instead. * Functional test for 'use' cli comamnd tests/functional/test_cli_use.py Fix unit tests after this work was done. Change-Id: Ibac6cdac49fa8afeaefd299fa3c0c6b0952abfb0
This commit is contained in:
parent
7280c06c23
commit
55266512cb
@ -36,9 +36,6 @@ _rally()
|
||||
OPTS["task_status"]="--uuid"
|
||||
OPTS["task_use"]="--task"
|
||||
OPTS["task_validate"]="--deployment --task --task-args --task-args-file"
|
||||
OPTS["use_deployment"]="--deployment"
|
||||
OPTS["use_task"]="--uuid"
|
||||
OPTS["use_verification"]="--uuid"
|
||||
OPTS["verify_compare"]="--uuid-1 --uuid-2 --csv --html --json --output-file --threshold"
|
||||
OPTS["verify_detailed"]="--uuid --sort-by"
|
||||
OPTS["verify_list"]=""
|
||||
|
@ -301,17 +301,6 @@ class CinderVolumes(utils.CinderScenario,
|
||||
:param kwargs: Optional parameters used during volume
|
||||
snapshot creation.
|
||||
"""
|
||||
if "min_size" in kwargs or "max_size" in kwargs:
|
||||
import warnings
|
||||
warnings.warn("'min_size' and 'max_size' arguments "
|
||||
"are deprecated. You should use 'size', with "
|
||||
"keys 'min' and 'max' instead.")
|
||||
if "volume_size" in kwargs:
|
||||
import warnings
|
||||
warnings.warn("'volume_size' argument is deprecated. You should "
|
||||
"use 'size' instead.")
|
||||
size = kwargs["volume_size"]
|
||||
|
||||
if size is None:
|
||||
size = {"min": 1, "max": 5}
|
||||
selected_type = None
|
||||
@ -362,12 +351,6 @@ class CinderVolumes(utils.CinderScenario,
|
||||
:param kwargs: Optional parameters used during volume
|
||||
snapshot creation.
|
||||
"""
|
||||
if "volume_size" in kwargs:
|
||||
import warnings
|
||||
warnings.warn("'volume_size' argument is deprecated. You should "
|
||||
"use 'size' instead.")
|
||||
size = kwargs["volume_size"]
|
||||
|
||||
if size is None:
|
||||
size = {"min": 1, "max": 5}
|
||||
if nested_level is None:
|
||||
|
Loading…
Reference in New Issue
Block a user