Add boot_vm_attach_detach_volume scenario
This patch adds support for the scenario boot_vm_attach_detach_volume - Boots a VM - Waits for the VM to be pingable - Creates a Volume - Attaches the Volume to VM, then - Detaches the Volume from VM - Deletes the VM Change-Id: I37a1a6d5a661973b1b249045f9261316c380f7e6
This commit is contained in:
parent
2830c0b05f
commit
96ce2c8686
@ -144,6 +144,13 @@ workloads:
|
||||
size: 1
|
||||
file: rally/cinder/cinder-create-and-update-volume.yml
|
||||
|
||||
- name: create-attach-and-detach-volume
|
||||
enabled: true
|
||||
image_name: cirro5
|
||||
flavor_name: m1.tiny
|
||||
ext_net_id:
|
||||
file: rally/rally-plugins/cinder/boot_vm_attach_detach_volume.yml
|
||||
|
||||
- name: keystonebasic
|
||||
enabled: false
|
||||
type: rally
|
||||
|
94
rally/rally-plugins/cinder/boot_vm_attach_detach_volume.py
Normal file
94
rally/rally-plugins/cinder/boot_vm_attach_detach_volume.py
Normal file
@ -0,0 +1,94 @@
|
||||
# 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.
|
||||
|
||||
from rally_openstack import consts
|
||||
from rally_openstack.scenarios.cinder import utils as cinder_utils
|
||||
from rally_openstack.scenarios.vm import utils as vm_utils
|
||||
from rally_openstack.task.scenarios.neutron import utils as neutron_utils
|
||||
|
||||
from rally.task import scenario
|
||||
from rally.task import types
|
||||
from rally.task import validation
|
||||
|
||||
|
||||
@types.convert(image={"type": "glance_image"}, flavor={"type": "nova_flavor"})
|
||||
@validation.add("restricted_parameters", param_names=["name", "display_name"],
|
||||
subdict="create_volume_params")
|
||||
@validation.add("image_valid_on_flavor", flavor_param="flavor", image_param="image")
|
||||
@validation.add("required_services",services=[consts.Service.NOVA, consts.Service.CINDER])
|
||||
@validation.add("required_platform", platform="openstack", users=True)
|
||||
@scenario.configure(context={"cleanup@openstack": ["cinder", "nova", "neutron"],
|
||||
"keypair@openstack": {},
|
||||
"allow_ssh@openstack": None},
|
||||
name="BrowbeatPlugin.create_vm_attach_and_detach_volume", platform="openstack")
|
||||
class CreateVmAttachAndDetachVolume(vm_utils.VMScenario, neutron_utils.NeutronScenario,
|
||||
cinder_utils.CinderBasic,):
|
||||
|
||||
def run(self, size, image, flavor, ext_net_id, router_create_args,
|
||||
network_create_args=None, subnet_create_args=None,
|
||||
create_volume_params={}, **kwargs):
|
||||
|
||||
ext_net_name = self.clients("neutron").show_network(
|
||||
ext_net_id)["network"]["name"]
|
||||
router_create_args["name"] = self.generate_random_name()
|
||||
router_create_args["tenant_id"] = self.context["tenant"]["id"]
|
||||
router_create_args.setdefault("external_gateway_info",
|
||||
{"network_id": ext_net_id, "enable_snat": True})
|
||||
router = self.admin_clients("neutron").create_router({"router": router_create_args})
|
||||
|
||||
network = self._create_network(network_create_args or {})
|
||||
subnet = self._create_subnet(network, subnet_create_args or {})
|
||||
self._add_interface_router(subnet['subnet'], router['router'])
|
||||
kwargs["nics"] = [{'net-id': network['network']['id']}]
|
||||
security_group = self._create_security_group_icmp_ssh()
|
||||
kwargs["security_groups"] = [security_group["security_group"]["name"]]
|
||||
|
||||
guest = self._boot_server_with_fip(
|
||||
image, flavor, True,
|
||||
floating_network=ext_net_name,
|
||||
key_name=self.context["user"]["keypair"]["name"],
|
||||
**kwargs)
|
||||
server_fip = guest[1]['ip']
|
||||
self._wait_for_ping(server_fip)
|
||||
|
||||
volume = self.cinder.create_volume(size, **create_volume_params)
|
||||
server = self._show_server(guest[0])
|
||||
|
||||
self._attach_volume(server, volume)
|
||||
self._detach_volume(server, volume)
|
||||
self.cinder.delete_volume(volume)
|
||||
self._delete_server_with_fip(guest[0], guest[1])
|
||||
|
||||
def _create_security_group_icmp_ssh(self):
|
||||
"""Create neutron security group for icmp and ssh.
|
||||
:param none
|
||||
:returns: neutron security group object
|
||||
"""
|
||||
security_group_args = {}
|
||||
security_group = self._create_security_group(**security_group_args)
|
||||
msg = "security_group isn't created"
|
||||
self.assertTrue(security_group, err_msg=msg)
|
||||
for protocol in ["icmp", "tcp"]:
|
||||
security_group_rule_args = {}
|
||||
if protocol == "icmp":
|
||||
security_group_rule_args["protocol"] = "icmp"
|
||||
security_group_rule_args["remote_ip_prefix"] = "0.0.0.0/0"
|
||||
else:
|
||||
security_group_rule_args["protocol"] = "tcp"
|
||||
security_group_rule_args["port_range_min"] = 22
|
||||
security_group_rule_args["port_range_max"] = 22
|
||||
security_group_rule = self._create_security_group_rule(
|
||||
security_group["security_group"]["id"],
|
||||
**security_group_rule_args)
|
||||
msg = "security_group_rule isn't created"
|
||||
self.assertTrue(security_group_rule, err_msg=msg)
|
||||
return security_group
|
51
rally/rally-plugins/cinder/boot_vm_attach_detach_volume.yml
Normal file
51
rally/rally-plugins/cinder/boot_vm_attach_detach_volume.yml
Normal file
@ -0,0 +1,51 @@
|
||||
{% set image_name = image_name or "centos7" %}
|
||||
{% set flavor_name = flavor_name or "m1.small" %}
|
||||
{% set sla_max_avg_duration = sla_max_avg_duration or 60 %}
|
||||
{% set sla_max_failure = sla_max_failure or 0 %}
|
||||
{% set sla_max_seconds = sla_max_seconds or 60 %}
|
||||
---
|
||||
BrowbeatPlugin.create_vm_attach_and_detach_volume:
|
||||
-
|
||||
args:
|
||||
size: 1
|
||||
image:
|
||||
name: {{ image_name }}
|
||||
flavor:
|
||||
name: {{ flavor_name }}
|
||||
ext_net_id: {{ ext_net_id }}
|
||||
floating: True
|
||||
network_create_args: {}
|
||||
router_create_args: {}
|
||||
subnet_create_args: {}
|
||||
runner:
|
||||
concurrency: {{ concurrency }}
|
||||
times: {{ times }}
|
||||
type: "constant"
|
||||
context:
|
||||
network:
|
||||
start_cidr: "10.0.0.0/16"
|
||||
networks_per_tenant: 1
|
||||
users:
|
||||
tenants: 2
|
||||
users_per_tenant: 2
|
||||
quotas:
|
||||
neutron:
|
||||
network: -1
|
||||
port: -1
|
||||
router: -1
|
||||
subnet: -1
|
||||
floatingip: -1
|
||||
security_group: -1
|
||||
security_group_rule: -1
|
||||
nova:
|
||||
instances: -1
|
||||
cores: -1
|
||||
ram: -1
|
||||
cinder:
|
||||
gigabytes: -1
|
||||
volumes: -1
|
||||
sla:
|
||||
max_avg_duration: {{sla_max_avg_duration}}
|
||||
max_seconds_per_iteration: {{sla_max_seconds}}
|
||||
failure_rate:
|
||||
max: {{sla_max_failure}}
|
Loading…
Reference in New Issue
Block a user