aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opnfv/test_cases/opnfv_yardstick_tc045.yaml
blob: d851d5a711ab62f04d4e1d9959c482bd4f65dd42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
##############################################################################
# Copyright (c) 2017 14_ykl@tongji.edu.cn and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
---

schema: "yardstick:task:0.1"
description: >
    Test case for TC045 :Control node Openstack service down - neutron server.

{% set file = file or 'etc/yardstick/nodes/fuel_baremetal/pod.yaml' %}

scenarios:
-
  type: ServiceHA
  options:
    attackers:
    - fault_type: "kill-process"
      process_name: "neutron-server"
      host: node1

    monitors:
    - monitor_type: "openstack-cmd"
      command_name: "openstack router list"
      monitor_time: 10
      monitor_number: 3
      sla:
        max_outage_time: 5
    - monitor_type: "process"
      process_name: "neutron-server"
      host: node1
      monitor_time: 20
      monitor_number: 3
      sla:
        max_recover_time: 20

  nodes:
    node1: node1.LF

  runner:
    type: Duration
    duration: 1
  sla:
    outage_time: 5
    action: monitor


context:
  type: Node
  name: LF
  file: {{file}}
ss="nt">private_net_pool_start: type: string description: Start of private network IP address allocation pool default: '192.168.2.100' private_net_pool_end: type: string default: '192.168.2.200' description: End of private network IP address allocation pool resources: key_pair: type: OS::Nova::KeyPair properties: save_private_key: true name: {get_param: key_name } private_net: type: OS::Neutron::Net properties: name: { get_param: private_net_name } private_subnet: type: OS::Neutron::Subnet properties: network_id: { get_resource: private_net } cidr: { get_param: private_net_cidr } gateway_ip: { get_param: private_net_gateway } allocation_pools: - start: { get_param: private_net_pool_start } end: { get_param: private_net_pool_end } router: type: OS::Neutron::Router properties: external_gateway_info: network: { get_param: public_net_name } router_interface: type: OS::Neutron::RouterInterface properties: router_id: { get_resource: router } subnet_id: { get_resource: private_subnet } volume1: type: OS::Cinder::Volume properties: name: Volume1 image: { get_param: image } size: 1 server1: type: OS::Nova::Server depends_on: volume1 properties: name: Server1 block_device_mapping: - device_name: vda volume_id: { get_resource: volume1 } flavor: { get_resource: test_flavor } key_name: { get_resource: key_pair } networks: - port: { get_resource: server1_port } server1_port: type: OS::Neutron::Port properties: network_id: { get_resource: private_net } fixed_ips: - subnet_id: { get_resource: private_subnet } security_groups: [{ get_resource: server_security_group }] server1_floating_ip: type: OS::Neutron::FloatingIP # TODO: investigate why we need this depends_on and if we could # replace it by router_id with get_resource: router_interface depends_on: router_interface properties: floating_network: { get_param: public_net_name } port_id: { get_resource: server1_port } server_security_group: type: OS::Neutron::SecurityGroup properties: description: Add security group rules for server name: pingtest-security-group rules: - remote_ip_prefix: 0.0.0.0/0 protocol: tcp port_range_min: 22 port_range_max: 22 - remote_ip_prefix: 0.0.0.0/0 protocol: icmp test_flavor: type: OS::Nova::Flavor properties: ram: 512 vcpus: 1 outputs: server1_private_ip: description: IP address of server1 in private network value: { get_attr: [ server1, first_address ] } server1_public_ip: description: Floating IP address of server1 in public network value: { get_attr: [ server1_floating_ip, floating_ip_address ] }