Sample test case for the HA of controller node Openstack service.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
 -
     attackers:
     - fault_type: "kill-process"
       process_name: "nova-api"
-      host: node1
+      host: {{attack_host}}
 
     wait_time: 10
     monitors:
         max_outage_time: 5
     - monitor_type: "process"
       process_name: "nova-api"
-      host: node1
+      host: {{attack_host}}
       monitor_time: 30
       monitor_number: 3
       sla:
         max_recover_time: 30
 
   nodes:
-    node1: node1.LF
+    {{attack_host}}: {{attack_host}}.LF
 
   runner:
     type: Iteration
 
     Yardstick TC043 config file;
     Measure latency between NFVI nodes using ping.
 
-{% set host = host or "node1.LF" %}
-{% set target = target or "node2.LF" %}
+{% set host = host or "node1" %}
+{% set target = target or "node2" %}
 {% set file = file or '/etc/yardstick/pod.yaml' %}
 scenarios:
 -
   type: Ping
   options:
     packetsize: 100
-  host: {{host}}
-  target: {{target}}
+  host: {{host}}.LF
+  target: {{target}}.LF
 
   runner:
     type: Duration
 
     Test case for TC045 :Control node Openstack service down - neutron server.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
 -
     attackers:
     - fault_type: "kill-process"
       process_name: "neutron-server"
-      host: node1
+      host: {{attack_host}}
 
     monitors:
     - monitor_type: "openstack-cmd"
         max_outage_time: 5
     - monitor_type: "process"
       process_name: "neutron-server"
-      host: node1
+      host: {{attack_host}}
       monitor_time: 30
       monitor_number: 3
       sla:
         max_recover_time: 30
 
   nodes:
-    node1: node1.LF
+    {{attack_host}}: {{attack_host}}.LF
 
   runner:
     type: Duration
 
     Test case for TC046 :Control node Openstack service down - keystone.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
 -
     attackers:
     - fault_type: "kill-process"
       process_name: "keystone"
-      host: node1
+      host: {{attack_host}}
 
     monitors:
     - monitor_type: "openstack-cmd"
         max_outage_time: 5
     - monitor_type: "process"
       process_name: "keystone"
-      host: node1
+      host: {{attack_host}}
       monitor_time: 30
       monitor_number: 3
       sla:
         max_recover_time: 30
 
   nodes:
-    node1: node1.LF
+    {{attack_host}}: {{attack_host}}.LF
 
   runner:
     type: Duration
 
     Test case for TC047 :Control node Openstack service down - glance api.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
 -
     attackers:
     - fault_type: "kill-process"
       process_name: "glance-api"
-      host: node1
+      host: {{attack_host}}
 
     monitors:
     - monitor_type: "openstack-cmd"
         max_outage_time: 5
     - monitor_type: "process"
       process_name: "glance-api"
-      host: node1
+      host: {{attack_host}}
       monitor_time: 30
       monitor_number: 3
       sla:
         max_recover_time: 30
 
   nodes:
-    node1: node1.LF
+    {{attack_host}}: {{attack_host}}.LF
 
   runner:
     type: Duration
 
     Test case for TC048 :Control node Openstack service down - cinder api.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
 -
     attackers:
     - fault_type: "kill-process"
       process_name: "cinder-api"
-      host: node1
+      host: {{attack_host}}
 
     monitors:
     - monitor_type: "openstack-cmd"
         max_outage_time: 5
     - monitor_type: "process"
       process_name: "cinder-api"
-      host: node1
+      host: {{attack_host}}
       monitor_time: 30
       monitor_number: 3
       sla:
         max_recover_time: 30
 
   nodes:
-    node1: node1.LF
+    {{attack_host}}: {{attack_host}}.LF
 
   runner:
     type: Duration
 
     Test case for TC049 :Control node Openstack service down - swift proxy.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
 -
     attackers:
     - fault_type: "kill-process"
       process_name: "swift-proxy"
-      host: node1
+      host: {{attack_host}}
 
     monitors:
     - monitor_type: "openstack-cmd"
         max_outage_time: 5
     - monitor_type: "process"
       process_name: "swift-proxy"
-      host: node1
+      host: {{attack_host}}
       monitor_time: 30
       monitor_number: 3
       sla:
         max_recover_time: 30
 
   nodes:
-    node1: node1.LF
+    {{attack_host}}: {{attack_host}}.LF
 
   runner:
     type: Duration
 
     This test case is written by new scenario-based HA testing framework.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 {% set external_net = external_net or 'br-ex' %}
 {% set management_net = management_net or 'br-mgmt' %}
 {% set storage_net = storage_net or 'br-storage' %}
       attackers:
         -
           fault_type: "general-attacker"
-          host: node1
+          host: {{attack_host}}
           key: "close-br-public"
           attack_key: "close-interface"
           action_parameter:
 
         -
           fault_type: "general-attacker"
-          host: node1
+          host: {{attack_host}}
           key: "close-br-mgmt"
           attack_key: "close-interface"
           action_parameter:
 
         -
           fault_type: "general-attacker"
-          host: node1
+          host: {{attack_host}}
           key: "close-br-storage"
           attack_key: "close-interface"
           action_parameter:
 
         -
           fault_type: "general-attacker"
-          host: node1
+          host: {{attack_host}}
           key: "close-br-private"
           attack_key: "close-interface"
           action_parameter:
 
 
     nodes:
-      node1: node1.LF
+      {{attack_host}}: {{attack_host}}.LF
     runner:
       type: Duration
       duration: 1
 
     This test case is written by new scenario-based HA testing framework.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
   -
       attackers:
         -
           fault_type: "general-attacker"
-          host: node1
+          host: {{attack_host}}
           key: "stress-cpu"
           attack_key: "stress-cpu"
 
 
 
     nodes:
-      node1: node1.LF
+      {{attack_host}}: {{attack_host}}.LF
     runner:
       type: Duration
       duration: 1
 
     This test case is written by new scenario-based HA testing framework.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
   -
       attackers:
         -
           fault_type: "general-attacker"
-          host: node1
+          host: {{attack_host}}
           key: "block-io"
           attack_key: "block-io"
 
           index: 4
 
     nodes:
-      node1: node1.LF
+      {{attack_host}}: {{attack_host}}.LF
     runner:
       type: Duration
       duration: 1
 
     This test case is written by new scenario-based HA testing framework.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set attack_host = attack_host or "node1" %}
 
 scenarios:
   -
       attackers:
         -
           fault_type: "kill-process"
-          host: node1
+          host: {{attack_host}}
           key: "kill-process"
           process_name: "haproxy"
 
           monitor_type: "process"
           key: "service-status"
           process_name: "haproxy"
-          host: node1
+          host: {{attack_host}}
           monitor_time: 30
           monitor_number: 3
           sla:
           index: 3
 
     nodes:
-      node1: node1.LF
+      {{attack_host}}: {{attack_host}}.LF
     runner:
       type: Duration
       duration: 1
 
     cache size per CPU, total cache size;
     HT (Hyper-Thread) support status, 1 for open, 0 for close.
 
-{% set host = host or "node5.yardstick-TC055" %}
 {% set file = file or '/etc/yardstick/pod.yaml' %}
+{% set host = host or "node5" %}
 scenarios:
 -
   type: ComputeCapacity
 
   nodes:
-    host: {{host}}
+    host: {{host}}.yardstick-TC055
 
   runner:
     type: Iteration
 
     Measure disk size, block size and disk utilization using fdisk and iostat.
 
 {% set file = file or '/etc/yardstick/pod.yaml' %}
-{% set node = node or "node5" %}
+{% set host = host or "node5" %}
 
 scenarios:
 -
   options:
     test_type: "disk_size"
 
-  host: {{node}}.yardstick-TC063
+  host: {{host}}.yardstick-TC063
 
   runner:
     type: Iteration
 
     In req/rsp test, TCP_RR TCP_CRR UDP_RR can be used;
     req_rsp_size is option of req/rsp test;
 
-{% set host = host or "node1.LF" %}
-{% set target = target or "node2.LF" %}
+{% set host = host or "node1" %}
+{% set target = target or "node2" %}
 {% set file = file or '/etc/yardstick/pod.yaml' %}
 scenarios:
 -
     send_msg_size: 1024
     duration: 20
 
-  host: {{host}}
-  target: {{target}}
+  host: {{host}}.LF
+  target: {{target}}.LF
 
   runner:
     type: Iteration
 
     Measure network capacity and scale.
     Measure number of connections, number of frames received;
 
-{% set host = host or "node1.LF" %}
+{% set host = host or "node1" %}
 {% set file = file or '/etc/yardstick/pod.yaml' %}
 
 scenarios:
 -
   type: NetworkCapacity
-  host: {{host}}
+  host: {{host}}.LF
 
   runner:
     type: Iteration
 
     Measure CPU performance using SPEC CPU2006;
 
 {% set file = file or "/etc/yardstick/pod.yaml" %}
+{% set host = host or 'node1' %}
 
 scenarios:
 -
       runspec_size: ref
       runspec_rate: 1
 
-  host: node1.yardstick-TC078
+  host: {{host}}.yardstick-TC078
 
   runner:
     type: Iteration