e585fb3df4
Migrated plugins and cleaned up config files and improved ease of running some scenarios/plugins. Change-Id: If76ce233f3067b85aa086be7f615dbb900a1bcb9
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
{% set image_name = image_name or 'browbeat-linpack' %}
|
|
{% set flavor_name = flavor_name or 'm1.small' %}
|
|
{% set username = username or 'centos' %}
|
|
{% set times = times or 1 %}
|
|
{% set concurrency = concurrency or 1 %}
|
|
{% 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 %}
|
|
---
|
|
VMTasks.boot_runcommand_delete:
|
|
-
|
|
args:
|
|
image:
|
|
name: '{{image_name}}'
|
|
flavor:
|
|
name: '{{flavor_name}}'
|
|
external:
|
|
name: '{{external_network}}'
|
|
command:
|
|
remote_path: './linpack.sh'
|
|
local_path: 'rally/rally-plugins/workloads/linpack.sh'
|
|
username: '{{username}}'
|
|
nics:
|
|
- net-id: '{{net_id}}'
|
|
runner:
|
|
concurrency: {{concurrency}}
|
|
times: {{times}}
|
|
type: 'constant'
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 1
|
|
quotas:
|
|
neutron:
|
|
network: -1
|
|
port: -1
|
|
router: -1
|
|
subnet: -1
|
|
nova:
|
|
instances: -1
|
|
cores: -1
|
|
ram: -1
|
|
sla:
|
|
max_avg_duration: {{sla_max_avg_duration}}
|
|
max_seconds_per_iteration: {{sla_max_seconds}}
|
|
failure_rate:
|
|
max: {{sla_max_failure}}
|