├── .coveragerc ├── .dockerignore ├── .gitignore ├── .gitreview ├── .zuul.d ├── README.rst ├── base.yaml ├── docker-jobs.yaml ├── rally-task-barbican.yaml ├── rally-task-basic-with-existing-users.yaml ├── rally-task-cinder.yaml ├── rally-task-designate.yaml ├── rally-task-heat.yaml ├── rally-task-ironic.yaml ├── rally-task-keystone-glance-swift.yaml ├── rally-task-magnum.yaml ├── rally-task-manila.yaml ├── rally-task-mistral.yaml ├── rally-task-neutron-trunk.yaml ├── rally-task-neutron-with-extensions.yaml ├── rally-task-neutron.yaml ├── rally-task-nova.yaml ├── rally-task-octavia.yaml ├── rally-task-simple-job.yaml ├── rally-task-telemetry.yaml ├── rally-task-watcher.yaml ├── rally-task-zaqar.yaml ├── rally-tox-functional.yaml ├── rally-verify-tempest.yaml └── zuul.yaml ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── DOCKER_README.md ├── Dockerfile ├── LICENSE ├── README.rst ├── bindep.txt ├── devstack ├── README.rst ├── lib │ └── rally ├── plugin.sh └── settings ├── etc ├── motd └── rally │ ├── rally-config-generator.conf │ └── rally.conf.sample ├── pyproject.toml ├── rally-jobs ├── README.rst ├── barbican.yaml ├── basic-with-existing-users.yaml ├── certifcation_task_args.yaml ├── cinder.yaml ├── designate.yaml ├── extra │ ├── README.rst │ ├── autoscaling_group.yaml.template │ ├── autoscaling_policy.yaml.template │ ├── default.yaml.template │ ├── hook_example_script.sh │ ├── install_benchmark.sh │ ├── instance_test.sh │ ├── mistral_input.json │ ├── mistral_params.json │ ├── mistral_wb.yaml │ ├── random_strings.yaml.template │ ├── resource_group.yaml.template │ ├── resource_group_server_with_volume.yaml.template │ ├── resource_group_with_constraint.yaml.template │ ├── resource_group_with_outputs.yaml.template │ ├── server_with_ports.yaml.template │ ├── server_with_volume.yaml.template │ ├── updated_autoscaling_policy_inplace.yaml.template │ ├── updated_random_strings_add.yaml.template │ ├── updated_random_strings_delete.yaml.template │ ├── updated_random_strings_replace.yaml.template │ ├── updated_resource_group_increase.yaml.template │ ├── updated_resource_group_reduce.yaml.template │ └── workload │ │ ├── wordpress_heat_template.yaml │ │ └── wp-instances.yaml ├── heat.yaml ├── ironic.yaml ├── keystone-glance-swift.yaml ├── magnum.yaml ├── manila-no-ss.yaml ├── manila.yaml ├── mistral.yaml ├── neutron-trunk.yaml ├── neutron-with-extensions.yaml ├── neutron.yaml ├── nova.yaml ├── octavia.yaml ├── plugins │ ├── README.rst │ ├── __init__.py │ ├── fake_plugin.py │ ├── rally_profile.py │ └── test_relative_import │ │ ├── __init__.py │ │ └── zzz.py ├── rally_args.yaml ├── self-rally.yaml ├── simple-job.yaml ├── telemetry.yaml ├── watcher.yaml └── zaqar.yaml ├── rally_openstack ├── __init__.py ├── _compat.py ├── common │ ├── __init__.py │ ├── cfg │ │ ├── __init__.py │ │ ├── cinder.py │ │ ├── cleanup.py │ │ ├── glance.py │ │ ├── heat.py │ │ ├── ironic.py │ │ ├── keystone_roles.py │ │ ├── keystone_users.py │ │ ├── magnum.py │ │ ├── manila.py │ │ ├── mistral.py │ │ ├── neutron.py │ │ ├── nova.py │ │ ├── octavia.py │ │ ├── opts.py │ │ ├── osclients.py │ │ ├── profiler.py │ │ ├── tempest.py │ │ ├── vm.py │ │ └── watcher.py │ ├── consts.py │ ├── credential.py │ ├── exceptions.py │ ├── osclients.py │ ├── service.py │ ├── services │ │ ├── __init__.py │ │ ├── gnocchi │ │ │ ├── __init__.py │ │ │ └── metric.py │ │ ├── grafana │ │ │ ├── __init__.py │ │ │ └── grafana.py │ │ ├── heat │ │ │ ├── __init__.py │ │ │ └── main.py │ │ ├── identity │ │ │ ├── __init__.py │ │ │ ├── identity.py │ │ │ ├── keystone_common.py │ │ │ ├── keystone_v2.py │ │ │ └── keystone_v3.py │ │ ├── image │ │ │ ├── __init__.py │ │ │ ├── glance_common.py │ │ │ ├── glance_v1.py │ │ │ ├── glance_v2.py │ │ │ └── image.py │ │ ├── key_manager │ │ │ ├── __init__.py │ │ │ └── barbican.py │ │ ├── loadbalancer │ │ │ ├── __init__.py │ │ │ └── octavia.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── net_utils.py │ │ │ └── neutron.py │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── block.py │ │ │ ├── cinder_common.py │ │ │ ├── cinder_v1.py │ │ │ ├── cinder_v2.py │ │ │ └── cinder_v3.py │ ├── validators.py │ └── wrappers │ │ ├── __init__.py │ │ └── network.py ├── environment │ ├── __init__.py │ └── platforms │ │ ├── __init__.py │ │ └── existing.py ├── task │ ├── __init__.py │ ├── cleanup │ │ ├── __init__.py │ │ ├── base.py │ │ ├── manager.py │ │ └── resources.py │ ├── context.py │ ├── contexts │ │ ├── __init__.py │ │ ├── api_versions.py │ │ ├── cinder │ │ │ ├── __init__.py │ │ │ ├── volume_types.py │ │ │ └── volumes.py │ │ ├── cleanup │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── base.py │ │ │ └── user.py │ │ ├── dataplane │ │ │ ├── __init__.py │ │ │ └── heat.py │ │ ├── designate │ │ │ ├── __init__.py │ │ │ └── zones.py │ │ ├── glance │ │ │ ├── __init__.py │ │ │ └── images.py │ │ ├── heat │ │ │ ├── __init__.py │ │ │ └── stacks.py │ │ ├── keystone │ │ │ ├── __init__.py │ │ │ ├── roles.py │ │ │ └── users.py │ │ ├── magnum │ │ │ ├── __init__.py │ │ │ ├── ca_certs.py │ │ │ ├── cluster_templates.py │ │ │ └── clusters.py │ │ ├── manila │ │ │ ├── __init__.py │ │ │ ├── consts.py │ │ │ ├── manila_security_services.py │ │ │ ├── manila_share_networks.py │ │ │ └── manila_shares.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── allow_ssh.py │ │ │ ├── existing_network.py │ │ │ ├── networking_agents.py │ │ │ ├── networks.py │ │ │ └── routers.py │ │ ├── neutron │ │ │ ├── __init__.py │ │ │ └── lbaas.py │ │ ├── nova │ │ │ ├── __init__.py │ │ │ ├── flavors.py │ │ │ ├── keypairs.py │ │ │ └── servers.py │ │ ├── quotas │ │ │ ├── __init__.py │ │ │ ├── cinder_quotas.py │ │ │ ├── designate_quotas.py │ │ │ ├── manila_quotas.py │ │ │ ├── neutron_quotas.py │ │ │ ├── nova_quotas.py │ │ │ └── quotas.py │ │ ├── swift │ │ │ ├── __init__.py │ │ │ ├── objects.py │ │ │ └── utils.py │ │ ├── vm │ │ │ ├── __init__.py │ │ │ ├── custom_image.py │ │ │ └── image_command_customizer.py │ │ └── watcher │ │ │ ├── __init__.py │ │ │ └── audit_templates.py │ ├── hooks │ │ ├── __init__.py │ │ └── fault_injection.py │ ├── scenario.py │ ├── scenarios │ │ ├── __init__.py │ │ ├── authenticate │ │ │ ├── __init__.py │ │ │ └── authenticate.py │ │ ├── barbican │ │ │ ├── __init__.py │ │ │ ├── containers.py │ │ │ ├── orders.py │ │ │ ├── secrets.py │ │ │ └── utils.py │ │ ├── cinder │ │ │ ├── __init__.py │ │ │ ├── qos_specs.py │ │ │ ├── utils.py │ │ │ ├── volume_backups.py │ │ │ ├── volume_types.py │ │ │ └── volumes.py │ │ ├── designate │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ └── utils.py │ │ ├── dummy.py │ │ ├── elasticsearch │ │ │ ├── __init__.py │ │ │ └── logging.py │ │ ├── glance │ │ │ ├── __init__.py │ │ │ └── images.py │ │ ├── gnocchi │ │ │ ├── __init__.py │ │ │ ├── archive_policy.py │ │ │ ├── archive_policy_rule.py │ │ │ ├── capabilities.py │ │ │ ├── metric.py │ │ │ ├── resource.py │ │ │ ├── resource_type.py │ │ │ ├── status.py │ │ │ └── utils.py │ │ ├── grafana │ │ │ ├── __init__.py │ │ │ └── metrics.py │ │ ├── heat │ │ │ ├── __init__.py │ │ │ ├── stacks.py │ │ │ └── utils.py │ │ ├── ironic │ │ │ ├── __init__.py │ │ │ ├── nodes.py │ │ │ └── utils.py │ │ ├── keystone │ │ │ ├── __init__.py │ │ │ └── basic.py │ │ ├── magnum │ │ │ ├── __init__.py │ │ │ ├── cluster_templates.py │ │ │ ├── clusters.py │ │ │ ├── k8s_pods.py │ │ │ └── utils.py │ │ ├── manila │ │ │ ├── __init__.py │ │ │ ├── shares.py │ │ │ └── utils.py │ │ ├── mistral │ │ │ ├── __init__.py │ │ │ ├── executions.py │ │ │ ├── utils.py │ │ │ └── workbooks.py │ │ ├── neutron │ │ │ ├── __init__.py │ │ │ ├── bgpvpn.py │ │ │ ├── loadbalancer_v1.py │ │ │ ├── loadbalancer_v2.py │ │ │ ├── network.py │ │ │ ├── security_groups.py │ │ │ ├── trunk.py │ │ │ └── utils.py │ │ ├── nova │ │ │ ├── __init__.py │ │ │ ├── aggregates.py │ │ │ ├── availability_zones.py │ │ │ ├── flavors.py │ │ │ ├── hypervisors.py │ │ │ ├── keypairs.py │ │ │ ├── server_groups.py │ │ │ ├── servers.py │ │ │ ├── services.py │ │ │ └── utils.py │ │ ├── octavia │ │ │ ├── __init__.py │ │ │ ├── loadbalancers.py │ │ │ ├── pools.py │ │ │ └── utils.py │ │ ├── quotas │ │ │ ├── __init__.py │ │ │ ├── quotas.py │ │ │ └── utils.py │ │ ├── swift │ │ │ ├── __init__.py │ │ │ ├── objects.py │ │ │ └── utils.py │ │ ├── vm │ │ │ ├── __init__.py │ │ │ ├── utils.py │ │ │ ├── vmtasks.py │ │ │ └── workloads │ │ │ │ ├── __init__.py │ │ │ │ └── siege.py │ │ ├── watcher │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ └── utils.py │ │ └── zaqar │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ └── utils.py │ ├── types.py │ └── ui │ │ ├── __init__.py │ │ └── charts │ │ ├── __init__.py │ │ └── osprofilerchart.py └── verification │ ├── __init__.py │ └── tempest │ ├── __init__.py │ ├── config.ini │ ├── config.py │ ├── consts.py │ ├── context.py │ └── manager.py ├── requirements.txt ├── samples ├── README.rst ├── deployments │ ├── README.rst │ ├── existing-api.json │ ├── existing-keystone-v3-osprofiler.json │ ├── existing-keystone-v3-user.json │ ├── existing-keystone-v3.json │ ├── existing-with-predefined-users.json │ └── existing.json └── tasks │ ├── README.rst │ ├── contexts │ ├── README.rst │ ├── allow-ssh.json │ ├── allow-ssh.yaml │ ├── api-versions.json │ ├── api-versions.yaml │ ├── audit-templates.json │ ├── audit-templates.yaml │ ├── ca-certs.json │ ├── ca-certs.yaml │ ├── cluster-templates.json │ ├── cluster-templates.yaml │ ├── clusters.json │ ├── clusters.yaml │ ├── dummy-context.json │ ├── dummy-context.yaml │ ├── existing-network.json │ ├── existing-network.yaml │ ├── flavors.json │ ├── flavors.yaml │ ├── heat-dataplane.json │ ├── heat-dataplane.yaml │ ├── image-command-customizer.json │ ├── image-command-customizer.yaml │ ├── images.json │ ├── images.yaml │ ├── keypair.json │ ├── keypair.yaml │ ├── lbaas.json │ ├── lbaas.yaml │ ├── loadbalancers.json │ ├── loadbalancers.yaml │ ├── manila-security-services.json │ ├── manila-security-services.yaml │ ├── manila-share-networks.json │ ├── manila-share-networks.yaml │ ├── manila-shares.json │ ├── manila-shares.yaml │ ├── network.json │ ├── network.yaml │ ├── networking-agents.json │ ├── networking-agents.yaml │ ├── quotas.json │ ├── quotas.yaml │ ├── roles.json │ ├── roles.yaml │ ├── router.json │ ├── router.yaml │ ├── servers.json │ ├── servers.yaml │ ├── stacks.json │ ├── stacks.yaml │ ├── swift-objects.json │ ├── swift-objects.yaml │ ├── users.json │ ├── users.yaml │ ├── volume-types.json │ ├── volume-types.yaml │ ├── volumes.json │ ├── volumes.yaml │ ├── zones.json │ └── zones.yaml │ ├── runners │ ├── README.rst │ ├── constant │ │ ├── constant-for-duration.json │ │ ├── constant-for-duration.yaml │ │ ├── constant-timeout.json │ │ └── constant-timeout.yaml │ ├── rps │ │ ├── rps.json │ │ └── rps.yaml │ └── serial │ │ ├── serial.json │ │ └── serial.yaml │ ├── scenarios │ ├── README.rst │ ├── authenticate │ │ ├── keystone.json │ │ ├── keystone.yaml │ │ ├── token-validate-ceilometer.json │ │ ├── token-validate-ceilometer.yaml │ │ ├── token-validate-cinder.json │ │ ├── token-validate-cinder.yaml │ │ ├── token-validate-glance.json │ │ ├── token-validate-glance.yaml │ │ ├── token-validate-heat.json │ │ ├── token-validate-heat.yaml │ │ ├── token-validate-neutron.json │ │ ├── token-validate-neutron.yaml │ │ ├── token-validate-nova.json │ │ ├── token-validate-nova.yaml │ │ ├── token-validate-octavia.json │ │ └── token-validate-octavia.yaml │ ├── barbican │ │ ├── create-and-add-container.json │ │ ├── create-and-add-container.yaml │ │ ├── create-and-delete-asymmetric.json │ │ ├── create-and-delete-asymmetric.yaml │ │ ├── create-and-delete-certificate.json │ │ ├── create-and-delete-certificate.yaml │ │ ├── create-and-delete-container.json │ │ ├── create-and-delete-container.yaml │ │ ├── create-and-delete-keys.json │ │ ├── create-and-delete-keys.yaml │ │ ├── create-and-delete-order-certificate.json │ │ ├── create-and-delete-order-certificate.yaml │ │ ├── create-and-delete-rsa-container.json │ │ ├── create-and-delete-rsa-container.yaml │ │ ├── create-and-delete-secret.json │ │ ├── create-and-delete-secret.yaml │ │ ├── create-and-delete-symmetric-secret.json │ │ ├── create-and-delete-symmetric-secret.yaml │ │ ├── create-and-get-secret.json │ │ ├── create-and-get-secret.yaml │ │ ├── create-and-list-secret.json │ │ ├── create-and-list-secret.yaml │ │ ├── create-secret.json │ │ ├── create-secret.yaml │ │ ├── get-secret.json │ │ ├── get-secret.yaml │ │ ├── list-containers.json │ │ ├── list-containers.yaml │ │ ├── list-orders.json │ │ ├── list-orders.yaml │ │ ├── list-secrets.json │ │ └── list-secrets.yaml │ ├── cinder │ │ ├── creat-qos-and-associate-type.json │ │ ├── creat-qos-and-associate-type.yaml │ │ ├── create-and-accept-transfer.json │ │ ├── create-and-accept-transfer.yaml │ │ ├── create-and-attach-volume.json │ │ ├── create-and-attach-volume.yaml │ │ ├── create-and-delete-encryption-type.json │ │ ├── create-and-delete-encryption-type.yaml │ │ ├── create-and-delete-snapshot.json │ │ ├── create-and-delete-snapshot.yaml │ │ ├── create-and-delete-volume-type.json │ │ ├── create-and-delete-volume-type.yaml │ │ ├── create-and-delete-volume.json │ │ ├── create-and-delete-volume.yaml │ │ ├── create-and-extend-volume.json │ │ ├── create-and-extend-volume.yaml │ │ ├── create-and-get-qos.json │ │ ├── create-and-get-qos.yaml │ │ ├── create-and-get-volume-type.json │ │ ├── create-and-get-volume-type.yaml │ │ ├── create-and-get-volume.json │ │ ├── create-and-get-volume.yaml │ │ ├── create-and-list-encryption-type.json │ │ ├── create-and-list-encryption-type.yaml │ │ ├── create-and-list-qos.json │ │ ├── create-and-list-qos.yaml │ │ ├── create-and-list-snapshots.json │ │ ├── create-and-list-snapshots.yaml │ │ ├── create-and-list-volume-backups.json │ │ ├── create-and-list-volume-backups.yaml │ │ ├── create-and-list-volume-types.json │ │ ├── create-and-list-volume-types.yaml │ │ ├── create-and-list-volume.json │ │ ├── create-and-list-volume.yaml │ │ ├── create-and-restore-volume-backup.json │ │ ├── create-and-restore-volume-backup.yaml │ │ ├── create-and-set-qos.json │ │ ├── create-and-set-qos.yaml │ │ ├── create-and-set-volume-type-keys.json │ │ ├── create-and-set-volume-type-keys.yaml │ │ ├── create-and-update-encryption-type.json │ │ ├── create-and-update-encryption-type.yaml │ │ ├── create-and-update-readonly-flag.json │ │ ├── create-and-update-readonly-flag.yaml │ │ ├── create-and-update-volume-type.json │ │ ├── create-and-update-volume-type.yaml │ │ ├── create-and-update-volume.json │ │ ├── create-and-update-volume.yaml │ │ ├── create-and-upload-volume-to-image.json │ │ ├── create-and-upload-volume-to-image.yaml │ │ ├── create-encryption-type.json │ │ ├── create-encryption-type.yaml │ │ ├── create-from-image-and-delete-volume.json │ │ ├── create-from-image-and-delete-volume.yaml │ │ ├── create-from-volume-and-delete-volume.json │ │ ├── create-from-volume-and-delete-volume.yaml │ │ ├── create-get-and-delete-encryption-type.json │ │ ├── create-get-and-delete-encryption-type.yaml │ │ ├── create-incremental-volume-backup.json │ │ ├── create-incremental-volume-backup.yaml │ │ ├── create-nested-snapshots-and-attach-volume.json │ │ ├── create-nested-snapshots-and-attach-volume.yaml │ │ ├── create-snapshot-and-attach-volume.json │ │ ├── create-snapshot-and-attach-volume.yaml │ │ ├── create-volume-and-clone.json │ │ ├── create-volume-and-clone.yaml │ │ ├── create-volume-backup.json │ │ ├── create-volume-backup.yaml │ │ ├── create-volume-from-snapshot.json │ │ ├── create-volume-from-snapshot.yaml │ │ ├── create-volume-type-add-and-list-type-access.json │ │ ├── create-volume-type-add-and-list-type-access.yaml │ │ ├── create-volume.json │ │ ├── create-volume.yaml │ │ ├── list-transfers.json │ │ ├── list-transfers.yaml │ │ ├── list-types.json │ │ ├── list-types.yaml │ │ ├── list-volumes.json │ │ ├── list-volumes.yaml │ │ ├── modify-volume-metadata.json │ │ └── modify-volume-metadata.yaml │ ├── designate │ │ ├── create-and-delete-recordsets.json │ │ ├── create-and-delete-recordsets.yaml │ │ ├── create-and-delete-zone.json │ │ ├── create-and-delete-zone.yaml │ │ ├── create-and-list-recordsets.json │ │ ├── create-and-list-recordsets.yaml │ │ ├── create-and-list-zones.json │ │ ├── create-and-list-zones.yaml │ │ ├── list-recordsets.json │ │ ├── list-recordsets.yaml │ │ ├── list-zones.json │ │ └── list-zones.yaml │ ├── dummy │ │ ├── dummy-exception-probability.json │ │ ├── dummy-exception-probability.yaml │ │ ├── dummy-exception.json │ │ ├── dummy-exception.yaml │ │ ├── dummy-failure.json │ │ ├── dummy-failure.yaml │ │ ├── dummy-openstack.json │ │ ├── dummy-openstack.yaml │ │ ├── dummy-output.json │ │ ├── dummy-output.yaml │ │ ├── dummy-random-action.json │ │ ├── dummy-random-action.yaml │ │ ├── dummy-random-fail-in-atomic.json │ │ ├── dummy-random-fail-in-atomic.yaml │ │ ├── dummy-timed-atomic-actions.json │ │ ├── dummy-timed-atomic-actions.yaml │ │ ├── dummy.json │ │ └── dummy.yaml │ ├── elasticsearch │ │ ├── log-instance.json │ │ └── log-instance.yaml │ ├── glance │ │ ├── create-and-deactivate-image.json │ │ ├── create-and-deactivate-image.yaml │ │ ├── create-and-delete-image.json │ │ ├── create-and-delete-image.yaml │ │ ├── create-and-download-image.json │ │ ├── create-and-download-image.yaml │ │ ├── create-and-get-image.json │ │ ├── create-and-get-image.yaml │ │ ├── create-and-list-image.json │ │ ├── create-and-list-image.yaml │ │ ├── create-and-update-image.json │ │ ├── create-and-update-image.yaml │ │ ├── create-image-and-boot-instances.json │ │ ├── create-image-and-boot-instances.yaml │ │ ├── list-images.json │ │ └── list-images.yaml │ ├── gnocchi │ │ ├── create-archive-policy-rule.json │ │ ├── create-archive-policy-rule.yaml │ │ ├── create-archive-policy.json │ │ ├── create-archive-policy.yaml │ │ ├── create-delete-archive-policy-rule.json │ │ ├── create-delete-archive-policy-rule.yaml │ │ ├── create-delete-archive-policy.json │ │ ├── create-delete-archive-policy.yaml │ │ ├── create-delete-metric.json │ │ ├── create-delete-metric.yaml │ │ ├── create-delete-resource-type.json │ │ ├── create-delete-resource-type.yaml │ │ ├── create-delete-resource.json │ │ ├── create-delete-resource.yaml │ │ ├── create-metric.json │ │ ├── create-metric.yaml │ │ ├── create-resource-type.json │ │ ├── create-resource-type.yaml │ │ ├── create-resource.json │ │ ├── create-resource.yaml │ │ ├── get-status.json │ │ ├── get-status.yaml │ │ ├── list-archive-policy-rule.json │ │ ├── list-archive-policy-rule.yaml │ │ ├── list-archive-policy.json │ │ ├── list-archive-policy.yaml │ │ ├── list-capabilities.json │ │ ├── list-capabilities.yaml │ │ ├── list-metric.json │ │ ├── list-metric.yaml │ │ ├── list-resource-type.json │ │ └── list-resource-type.yaml │ ├── grafana │ │ ├── push-metric-from-instance.json │ │ ├── push-metric-from-instance.yaml │ │ ├── push-metric-locally.json │ │ └── push-metric-locally.yaml │ ├── heat │ │ ├── create-and-delete-stack-resource-group.json │ │ ├── create-and-delete-stack-resource-group.yaml │ │ ├── create-and-delete-stack-with-delay.json │ │ ├── create-and-delete-stack-with-delay.yaml │ │ ├── create-and-delete-stack-with-neutron.json │ │ ├── create-and-delete-stack-with-neutron.yaml │ │ ├── create-and-delete-stack-with-volume.json │ │ ├── create-and-delete-stack-with-volume.yaml │ │ ├── create-and-delete-stack.json │ │ ├── create-and-delete-stack.yaml │ │ ├── create-and-list-stack.json │ │ ├── create-and-list-stack.yaml │ │ ├── create-check-delete-stack.json │ │ ├── create-check-delete-stack.yaml │ │ ├── create-snapshot-restore-delete-stack.json │ │ ├── create-snapshot-restore-delete-stack.yaml │ │ ├── create-stack-and-list-output-resource-group.json │ │ ├── create-stack-and-list-output-resource-group.yaml │ │ ├── create-stack-and-scale.json │ │ ├── create-stack-and-scale.yaml │ │ ├── create-stack-and-show-output-resource-group.json │ │ ├── create-stack-and-show-output-resource-group.yaml │ │ ├── create-suspend-resume-delete-stack.json │ │ ├── create-suspend-resume-delete-stack.yaml │ │ ├── create-update-delete-stack-add-res.json │ │ ├── create-update-delete-stack-add-res.yaml │ │ ├── create-update-delete-stack-del-res.json │ │ ├── create-update-delete-stack-del-res.yaml │ │ ├── create-update-delete-stack-increase.json │ │ ├── create-update-delete-stack-increase.yaml │ │ ├── create-update-delete-stack-inplace.json │ │ ├── create-update-delete-stack-inplace.yaml │ │ ├── create-update-delete-stack-reduce.json │ │ ├── create-update-delete-stack-reduce.yaml │ │ ├── create-update-delete-stack-replace.json │ │ ├── create-update-delete-stack-replace.yaml │ │ ├── list-stack-and-event.json │ │ ├── list-stack-and-event.yaml │ │ ├── list-stack-and-resources.json │ │ ├── list-stack-and-resources.yaml │ │ └── templates │ │ │ ├── autoscaling-group.yaml.template │ │ │ ├── autoscaling-policy.yaml.template │ │ │ ├── default.yaml.template │ │ │ ├── random-strings.yaml.template │ │ │ ├── resource-group-server-with-volume.yaml.template │ │ │ ├── resource-group-with-constraint.yaml.template │ │ │ ├── resource-group-with-outputs.yaml.template │ │ │ ├── resource-group.yaml.template │ │ │ ├── server-with-ports.yaml.template │ │ │ ├── server-with-volume.yaml.template │ │ │ ├── updated-autoscaling-policy-inplace.yaml.template │ │ │ ├── updated-random-strings-add.yaml.template │ │ │ ├── updated-random-strings-delete.yaml.template │ │ │ ├── updated-random-strings-replace.yaml.template │ │ │ ├── updated-resource-group-increase.yaml.template │ │ │ └── updated-resource-group-reduce.yaml.template │ ├── ironic │ │ ├── create-and-delete-node.json │ │ ├── create-and-delete-node.yaml │ │ ├── create-and-list-node.json │ │ └── create-and-list-node.yaml │ ├── keystone │ │ ├── add-and-remove-user-role.json │ │ ├── add-and-remove-user-role.yaml │ │ ├── authenticate-user-and-validate-token.json │ │ ├── authenticate-user-and-validate-token.yaml │ │ ├── create-add-and-list-user-roles.json │ │ ├── create-add-and-list-user-roles.yaml │ │ ├── create-and-delete-ec2credential.json │ │ ├── create-and-delete-ec2credential.yaml │ │ ├── create-and-delete-role.json │ │ ├── create-and-delete-role.yaml │ │ ├── create-and-delete-service.json │ │ ├── create-and-delete-service.yaml │ │ ├── create-and-delete-user.json │ │ ├── create-and-delete-user.yaml │ │ ├── create-and-get-role.json │ │ ├── create-and-get-role.yaml │ │ ├── create-and-list-ec2credentials.json │ │ ├── create-and-list-ec2credentials.yaml │ │ ├── create-and-list-roles.json │ │ ├── create-and-list-roles.yaml │ │ ├── create-and-list-services.json │ │ ├── create-and-list-services.yaml │ │ ├── create-and-list-tenants.json │ │ ├── create-and-list-tenants.yaml │ │ ├── create-and-list-users.json │ │ ├── create-and-list-users.yaml │ │ ├── create-and-update-user.json │ │ ├── create-and-update-user.yaml │ │ ├── create-tenant-with-users.json │ │ ├── create-tenant-with-users.yaml │ │ ├── create-tenant.json │ │ ├── create-tenant.yaml │ │ ├── create-update-and-delete-tenant.json │ │ ├── create-update-and-delete-tenant.yaml │ │ ├── create-user-set-enabled-and-delete.json │ │ ├── create-user-set-enabled-and-delete.yaml │ │ ├── create-user-update-password.json │ │ ├── create-user-update-password.yaml │ │ ├── create-user.json │ │ ├── create-user.yaml │ │ ├── get-entities.json │ │ └── get-entities.yaml │ ├── magnum │ │ ├── artifacts │ │ │ ├── nginx.yaml.k8s │ │ │ └── rc_nginx.yaml.k8s │ │ ├── create-and-list-clusters.json │ │ ├── create-and-list-clusters.yaml │ │ ├── create-pods.json │ │ ├── create-pods.yaml │ │ ├── create-rcs.json │ │ ├── create-rcs.yaml │ │ ├── list-cluster-templates.json │ │ ├── list-cluster-templates.yaml │ │ ├── list-clusters.json │ │ ├── list-clusters.yaml │ │ ├── list-pods.json │ │ └── list-pods.yaml │ ├── manila │ │ ├── attach-security-service-to-share-network.json │ │ ├── attach-security-service-to-share-network.yaml │ │ ├── create-security-service-and-delete.json │ │ ├── create-security-service-and-delete.yaml │ │ ├── create-share-allow-and-deny-access.json │ │ ├── create-share-allow-and-deny-access.yaml │ │ ├── create-share-and-access-from-vm.json │ │ ├── create-share-and-access-from-vm.yaml │ │ ├── create-share-and-extend.json │ │ ├── create-share-and-extend.yaml │ │ ├── create-share-and-shrink.json │ │ ├── create-share-and-shrink.yaml │ │ ├── create-share-network-and-delete.json │ │ ├── create-share-network-and-delete.yaml │ │ ├── create-share-network-and-list.json │ │ ├── create-share-network-and-list.yaml │ │ ├── create-share-with-autocreated-share-networks-and-delete.json │ │ ├── create-share-with-autocreated-share-networks-and-delete.yaml │ │ ├── create-share-with-autocreated-share-networks-and-list.json │ │ ├── create-share-with-autocreated-share-networks-and-list.yaml │ │ ├── create-share-with-autocreated-share-networks-and-set-metadata.json │ │ ├── create-share-with-autocreated-share-networks-and-set-metadata.yaml │ │ ├── create-share-without-share-networks-and-delete.json │ │ ├── create-share-without-share-networks-and-delete.yaml │ │ ├── create-share-without-share-networks-and-list.json │ │ ├── create-share-without-share-networks-and-list.yaml │ │ ├── create-share-without-share-networks-and-set-metadata.json │ │ ├── create-share-without-share-networks-and-set-metadata.yaml │ │ ├── list-share-servers.json │ │ ├── list-share-servers.yaml │ │ ├── list-shares.json │ │ └── list-shares.yaml │ ├── mistral │ │ ├── create-delete-execution-with-workflow-name.json │ │ ├── create-delete-execution-with-workflow-name.yaml │ │ ├── create-delete-execution.json │ │ ├── create-delete-execution.yaml │ │ ├── create-delete-workbook.json │ │ ├── create-delete-workbook.yaml │ │ ├── create-execution-with-inputs.json │ │ ├── create-execution-with-inputs.yaml │ │ ├── create-execution-with-params.json │ │ ├── create-execution-with-params.yaml │ │ ├── create-execution-with-workflow-name.json │ │ ├── create-execution-with-workflow-name.yaml │ │ ├── create-execution.json │ │ ├── create-execution.yaml │ │ ├── create-workbook.json │ │ ├── create-workbook.yaml │ │ ├── list-executions.json │ │ ├── list-executions.yaml │ │ ├── list-workbooks.json │ │ └── list-workbooks.yaml │ ├── neutron │ │ ├── associate-and-dissociate-floating-ips.json │ │ ├── associate-and-dissociate-floating-ips.yaml │ │ ├── boot-server-and-add-subports.json │ │ ├── boot-server-and-add-subports.yaml │ │ ├── boot-server-and-batch-add-subports.json │ │ ├── boot-server-and-batch-add-subports.yaml │ │ ├── boot-server-with-subports.json │ │ ├── boot-server-with-subports.yaml │ │ ├── create-and-assoc-disassoc-networks-bgpvpns.json │ │ ├── create-and-assoc-disassoc-networks-bgpvpns.yaml │ │ ├── create-and-assoc-disassoc-routers-bgpvpns.json │ │ ├── create-and-assoc-disassoc-routers-bgpvpns.yaml │ │ ├── create-and-bind-ports.json │ │ ├── create-and-bind-ports.yaml │ │ ├── create-and-delete-bgpvpns.json │ │ ├── create-and-delete-bgpvpns.yaml │ │ ├── create-and-delete-floating-ips.json │ │ ├── create-and-delete-floating-ips.yaml │ │ ├── create-and-delete-healthmonitors.json │ │ ├── create-and-delete-healthmonitors.yaml │ │ ├── create-and-delete-networks.json │ │ ├── create-and-delete-networks.yaml │ │ ├── create-and-delete-pools.json │ │ ├── create-and-delete-pools.yaml │ │ ├── create-and-delete-ports.json │ │ ├── create-and-delete-ports.yaml │ │ ├── create-and-delete-routers.json │ │ ├── create-and-delete-routers.yaml │ │ ├── create-and-delete-security-group-rule.json │ │ ├── create-and-delete-security-group-rule.yaml │ │ ├── create-and-delete-security-groups.json │ │ ├── create-and-delete-security-groups.yaml │ │ ├── create-and-delete-subnets.json │ │ ├── create-and-delete-subnets.yaml │ │ ├── create-and-delete-vips.json │ │ ├── create-and-delete-vips.yaml │ │ ├── create-and-list-bgpvpns.json │ │ ├── create-and-list-bgpvpns.yaml │ │ ├── create-and-list-floating-ips.json │ │ ├── create-and-list-floating-ips.yaml │ │ ├── create-and-list-healthmonitors.json │ │ ├── create-and-list-healthmonitors.yaml │ │ ├── create-and-list-loadbalancers.json │ │ ├── create-and-list-loadbalancers.yaml │ │ ├── create-and-list-networks-associations.json │ │ ├── create-and-list-networks-associations.yaml │ │ ├── create-and-list-networks.json │ │ ├── create-and-list-networks.yaml │ │ ├── create-and-list-pools.json │ │ ├── create-and-list-pools.yaml │ │ ├── create-and-list-ports.json │ │ ├── create-and-list-ports.yaml │ │ ├── create-and-list-routers-associations.json │ │ ├── create-and-list-routers-associations.yaml │ │ ├── create-and-list-routers.json │ │ ├── create-and-list-routers.yaml │ │ ├── create-and-list-security-group-rules.json │ │ ├── create-and-list-security-group-rules.yaml │ │ ├── create-and-list-security-groups.json │ │ ├── create-and-list-security-groups.yaml │ │ ├── create-and-list-subnets.json │ │ ├── create-and-list-subnets.yaml │ │ ├── create-and-list-trunks.json │ │ ├── create-and-list-trunks.yaml │ │ ├── create-and-list-vips.json │ │ ├── create-and-list-vips.yaml │ │ ├── create-and-show-network.json │ │ ├── create-and-show-network.yaml │ │ ├── create-and-show-ports.json │ │ ├── create-and-show-ports.yaml │ │ ├── create-and-show-routers.json │ │ ├── create-and-show-routers.yaml │ │ ├── create-and-show-security-group-rule.json │ │ ├── create-and-show-security-group-rule.yaml │ │ ├── create-and-show-security-group.json │ │ ├── create-and-show-security-group.yaml │ │ ├── create-and-show-subnets.json │ │ ├── create-and-show-subnets.yaml │ │ ├── create-and-update-bgpvpns.json │ │ ├── create-and-update-bgpvpns.yaml │ │ ├── create-and-update-healthmonitors.json │ │ ├── create-and-update-healthmonitors.yaml │ │ ├── create-and-update-networks.json │ │ ├── create-and-update-networks.yaml │ │ ├── create-and-update-pools.json │ │ ├── create-and-update-pools.yaml │ │ ├── create-and-update-ports.json │ │ ├── create-and-update-ports.yaml │ │ ├── create-and-update-routers.json │ │ ├── create-and-update-routers.yaml │ │ ├── create-and-update-security-groups.json │ │ ├── create-and-update-security-groups.yaml │ │ ├── create-and-update-subnets.json │ │ ├── create-and-update-subnets.yaml │ │ ├── create-and-update-vips.json │ │ ├── create-and-update-vips.yaml │ │ ├── delete-subnets.json │ │ ├── delete-subnets.yaml │ │ ├── list-agents.json │ │ ├── list-agents.yaml │ │ ├── set-and-clear-router-gateway.json │ │ └── set-and-clear-router-gateway.yaml │ ├── nova │ │ ├── boot-and-associate-floating-ip.json │ │ ├── boot-and-associate-floating-ip.yaml │ │ ├── boot-and-block-migrate.json │ │ ├── boot-and-block-migrate.yaml │ │ ├── boot-and-delete-multiple.json │ │ ├── boot-and-delete-multiple.yaml │ │ ├── boot-and-delete-server-with-keypairs.json │ │ ├── boot-and-delete-server-with-keypairs.yaml │ │ ├── boot-and-delete.json │ │ ├── boot-and-delete.yaml │ │ ├── boot-and-get-console-server.json │ │ ├── boot-and-get-console-server.yaml │ │ ├── boot-and-get-console-url.json │ │ ├── boot-and-get-console-url.yaml │ │ ├── boot-and-list.json │ │ ├── boot-and-list.yaml │ │ ├── boot-and-live-migrate.json │ │ ├── boot-and-live-migrate.yaml │ │ ├── boot-and-migrate.json │ │ ├── boot-and-migrate.yaml │ │ ├── boot-and-rebuild.json │ │ ├── boot-and-rebuild.yaml │ │ ├── boot-and-show-server.json │ │ ├── boot-and-show-server.yaml │ │ ├── boot-and-update-server.json │ │ ├── boot-and-update-server.yaml │ │ ├── boot-bounce-delete.json │ │ ├── boot-bounce-delete.yaml │ │ ├── boot-from-volume-and-delete.json │ │ ├── boot-from-volume-and-delete.yaml │ │ ├── boot-from-volume-and-resize.json │ │ ├── boot-from-volume-and-resize.yaml │ │ ├── boot-from-volume-snapshot.json │ │ ├── boot-from-volume-snapshot.yaml │ │ ├── boot-from-volume.json │ │ ├── boot-from-volume.yaml │ │ ├── boot-lock-unlock-and-delete.json │ │ ├── boot-lock-unlock-and-delete.yaml │ │ ├── boot-server-and-attach-interface.json │ │ ├── boot-server-and-attach-interface.yaml │ │ ├── boot-server-and-list-interfaces.json │ │ ├── boot-server-and-list-interfaces.yaml │ │ ├── boot-server-associate-and-dissociate-floating-ip.json │ │ ├── boot-server-associate-and-dissociate-floating-ip.yaml │ │ ├── boot-server-attach-created-volume-and-extend.json │ │ ├── boot-server-attach-created-volume-and-extend.yaml │ │ ├── boot-server-attach-created-volume-and-live-migrate.json │ │ ├── boot-server-attach-created-volume-and-live-migrate.yaml │ │ ├── boot-server-attach-created-volume-and-resize.json │ │ ├── boot-server-attach-created-volume-and-resize.yaml │ │ ├── boot-server-attach-volume-and-list-attachments.json │ │ ├── boot-server-attach-volume-and-list-attachments.yaml │ │ ├── boot-server-from-volume-and-live-migrate.json │ │ ├── boot-server-from-volume-and-live-migrate.yaml │ │ ├── boot-snapshot-boot-delete.json │ │ ├── boot-snapshot-boot-delete.yaml │ │ ├── boot.json │ │ ├── boot.yaml │ │ ├── create-aggregate-add-and-remove-host.json │ │ ├── create-aggregate-add-and-remove-host.yaml │ │ ├── create-aggregate-add-host-and-boot-server.json │ │ ├── create-aggregate-add-host-and-boot-server.yaml │ │ ├── create-and-delete-aggregate.json │ │ ├── create-and-delete-aggregate.yaml │ │ ├── create-and-delete-flavor.json │ │ ├── create-and-delete-flavor.yaml │ │ ├── create-and-delete-keypair.json │ │ ├── create-and-delete-keypair.yaml │ │ ├── create-and-delete-server-group.json │ │ ├── create-and-delete-server-group.yaml │ │ ├── create-and-get-aggregate-details.json │ │ ├── create-and-get-aggregate-details.yaml │ │ ├── create-and-get-flavor.json │ │ ├── create-and-get-flavor.yaml │ │ ├── create-and-get-keypair.json │ │ ├── create-and-get-keypair.yaml │ │ ├── create-and-get-server-group.json │ │ ├── create-and-get-server-group.yaml │ │ ├── create-and-list-aggregates.json │ │ ├── create-and-list-aggregates.yaml │ │ ├── create-and-list-flavor-access.json │ │ ├── create-and-list-flavor-access.yaml │ │ ├── create-and-list-keypairs.json │ │ ├── create-and-list-keypairs.yaml │ │ ├── create-and-list-server-groups.json │ │ ├── create-and-list-server-groups.yaml │ │ ├── create-and-update-aggregate.json │ │ ├── create-and-update-aggregate.yaml │ │ ├── create-flavor-and-add-tenant-access.json │ │ ├── create-flavor-and-add-tenant-access.yaml │ │ ├── create-flavor-and-set-keys.json │ │ ├── create-flavor-and-set-keys.yaml │ │ ├── create-flavor.json │ │ ├── create-flavor.yaml │ │ ├── list-aggregates.json │ │ ├── list-aggregates.yaml │ │ ├── list-and-get-hypervisors.json │ │ ├── list-and-get-hypervisors.yaml │ │ ├── list-and-get-uptime-hypervisors.json │ │ ├── list-and-get-uptime-hypervisors.yaml │ │ ├── list-and-search-hypervisor.json │ │ ├── list-and-search-hypervisor.yaml │ │ ├── list-availability-zones.json │ │ ├── list-availability-zones.yaml │ │ ├── list-flavors.json │ │ ├── list-flavors.yaml │ │ ├── list-hypervisors.json │ │ ├── list-hypervisors.yaml │ │ ├── list-servers.json │ │ ├── list-servers.yaml │ │ ├── list-services.json │ │ ├── list-services.yaml │ │ ├── pause-and-unpause.json │ │ ├── pause-and-unpause.yaml │ │ ├── resize-server.json │ │ ├── resize-server.yaml │ │ ├── resize-shutoff-server.json │ │ ├── resize-shutoff-server.yaml │ │ ├── shelve-and-unshelve.json │ │ ├── shelve-and-unshelve.yaml │ │ ├── statistics-hypervisors.json │ │ ├── statistics-hypervisors.yaml │ │ ├── suspend-and-resume.json │ │ └── suspend-and-resume.yaml │ ├── octavia │ │ ├── octavia-create-and-delete-loadbalancers.json │ │ ├── octavia-create-and-delete-loadbalancers.yaml │ │ ├── octavia-create-and-delete-pools.json │ │ ├── octavia-create-and-delete-pools.yaml │ │ ├── octavia-create-and-list-loadbalancers.json │ │ ├── octavia-create-and-list-loadbalancers.yaml │ │ ├── octavia-create-and-list-pools.json │ │ ├── octavia-create-and-list-pools.yaml │ │ ├── octavia-create-and-show-loadbalancers.json │ │ ├── octavia-create-and-show-loadbalancers.yaml │ │ ├── octavia-create-and-show-pools.json │ │ ├── octavia-create-and-show-pools.yaml │ │ ├── octavia-create-and-stats-loadbalancers.json │ │ ├── octavia-create-and-stats-loadbalancers.yaml │ │ ├── octavia-create-and-update-loadbalancers.json │ │ ├── octavia-create-and-update-loadbalancers.yaml │ │ ├── octavia-create-and-update-pools.json │ │ └── octavia-create-and-update-pools.yaml │ ├── quotas │ │ ├── cinder-get.json │ │ ├── cinder-get.yaml │ │ ├── cinder-update-and-delete.json │ │ ├── cinder-update-and-delete.yaml │ │ ├── cinder-update.json │ │ ├── cinder-update.yaml │ │ ├── neutron-update.json │ │ ├── neutron-update.yaml │ │ ├── nova-get.json │ │ ├── nova-get.yaml │ │ ├── nova-update-and-delete.json │ │ ├── nova-update-and-delete.yaml │ │ ├── nova-update.json │ │ └── nova-update.yaml │ ├── requests │ │ ├── check-random-request.json │ │ ├── check-random-request.yaml │ │ ├── check-request.json │ │ └── check-request.yaml │ ├── swift │ │ ├── create-container-and-object-then-delete-all.json │ │ ├── create-container-and-object-then-delete-all.yaml │ │ ├── create-container-and-object-then-download-object.json │ │ ├── create-container-and-object-then-download-object.yaml │ │ ├── create-container-and-object-then-list-objects.json │ │ ├── create-container-and-object-then-list-objects.yaml │ │ ├── list-and-download-objects-in-containers.json │ │ ├── list-and-download-objects-in-containers.yaml │ │ ├── list-objects-in-containers.json │ │ └── list-objects-in-containers.yaml │ ├── vm │ │ ├── boot-runcommand-delete-custom-image.json │ │ ├── boot-runcommand-delete-custom-image.yaml │ │ ├── boot-runcommand-delete-script-inline.json │ │ ├── boot-runcommand-delete-script-inline.yaml │ │ ├── boot-runcommand-delete-with-disk.json │ │ ├── boot-runcommand-delete-with-disk.yaml │ │ ├── boot-runcommand-delete.json │ │ ├── boot-runcommand-delete.yaml │ │ ├── check-designate-dns-resolving.json │ │ ├── check-designate-dns-resolving.yaml │ │ ├── dd-load-test.json │ │ └── dd-load-test.yaml │ ├── watcher │ │ ├── create-audit-and-delete.json │ │ ├── create-audit-and-delete.yaml │ │ ├── create-audit-template-and-delete.json │ │ ├── create-audit-template-and-delete.yaml │ │ ├── list-audit-templates.json │ │ └── list-audit-templates.yaml │ ├── workload │ │ ├── wordpress.json │ │ └── wordpress.yaml │ └── zaqar │ │ ├── create-queue.json │ │ ├── create-queue.yaml │ │ ├── producer-consumer.json │ │ └── producer-consumer.yaml │ ├── sla │ ├── README.rst │ ├── create-and-delete-user.json │ └── create-and-delete-user.yaml │ └── support │ ├── README.rst │ ├── instance_linpack.sh │ └── instance_test.sh ├── tasks ├── README.rst ├── openstack │ ├── README.rst │ ├── macro │ │ └── macro.yaml │ ├── scenario │ │ ├── authentication.yaml │ │ ├── cinder.yaml │ │ ├── glance.yaml │ │ ├── keystone.yaml │ │ ├── neutron.yaml │ │ └── nova.yaml │ ├── task.yaml │ └── task_arguments.yaml └── openstack_metrics │ └── task.yaml ├── test-requirements.txt ├── tests ├── README.rst ├── __init__.py ├── ci │ ├── __init__.py │ ├── cover.sh │ ├── pages │ │ ├── task-index.html │ │ └── verify-index.html │ ├── playbooks │ │ ├── .ansible-lint │ │ ├── docker-build-and-check.yaml │ │ ├── docker-build-check-and-push.yaml │ │ ├── fetch-html-and-json-reports.yaml │ │ ├── post-rally-task.yaml │ │ ├── post-rally-verify.yaml │ │ ├── roles │ │ │ ├── check-task-sla │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ ├── docker-build-image │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ ├── docker-push-image │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ ├── fetch-rally-task-results │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ ├── import-task-results │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ ├── list-os-resources │ │ │ │ ├── __init__.py │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ ├── library │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── osresources.py │ │ │ │ └── tasks │ │ │ │ │ ├── list_and_compare_resources.yaml │ │ │ │ │ ├── list_resources.yaml │ │ │ │ │ └── main.yaml │ │ │ ├── prepare-for-rally-task │ │ │ │ ├── __init__.py │ │ │ │ ├── defaults │ │ │ │ │ └── main.yaml │ │ │ │ ├── library │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── make_env_spec_with_existing_users.py │ │ │ │ └── tasks │ │ │ │ │ ├── create_dummy_image.yaml │ │ │ │ │ ├── main.yaml │ │ │ │ │ └── prepare-env-with-existing-users.yaml │ │ │ ├── process-task-results │ │ │ │ └── tasks │ │ │ │ │ └── main.yaml │ │ │ └── run-rally-task │ │ │ │ └── tasks │ │ │ │ └── main.yaml │ │ ├── run-rally-task.yaml │ │ ├── run-rally-verify.yaml │ │ └── tox-functional-env-run.yaml │ ├── pytest_launcher.py │ ├── rally_functional_job.sh │ ├── rally_verify.py │ └── sync_requirements.py ├── functional │ ├── __init__.py │ ├── extra │ │ └── fake_dir │ │ │ └── fake_plugin.py │ ├── test_certification_task.py │ ├── test_cli_deployment.py │ ├── test_cli_env.py │ ├── test_cli_task.py │ ├── test_task_samples.py │ └── utils.py ├── hacking │ ├── __init__.py │ └── checks.py └── unit │ ├── __init__.py │ ├── common │ ├── __init__.py │ ├── services │ │ ├── __init__.py │ │ ├── barbican │ │ │ ├── __init__.py │ │ │ └── test_secrets.py │ │ ├── gnocchi │ │ │ ├── __init__.py │ │ │ └── test_metric.py │ │ ├── heat │ │ │ ├── __init__.py │ │ │ └── test_main.py │ │ ├── identity │ │ │ ├── __init__.py │ │ │ ├── test_identity.py │ │ │ ├── test_keystone_common.py │ │ │ ├── test_keystone_v2.py │ │ │ └── test_keystone_v3.py │ │ ├── image │ │ │ ├── __init__.py │ │ │ ├── test_glance_common.py │ │ │ ├── test_glance_v1.py │ │ │ ├── test_glance_v2.py │ │ │ └── test_image.py │ │ ├── loadbalancer │ │ │ ├── __init__.py │ │ │ └── test_octavia.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── test_net_utils.py │ │ │ └── test_neutron.py │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── test_block.py │ │ │ ├── test_cinder_common.py │ │ │ ├── test_cinder_v1.py │ │ │ ├── test_cinder_v2.py │ │ │ └── test_cinder_v3.py │ ├── test_credential.py │ ├── test_osclients.py │ ├── test_validators.py │ └── wrappers │ │ ├── __init__.py │ │ └── test_network.py │ ├── doc │ ├── __init__.py │ ├── test_docker_readme.py │ ├── test_docstrings.py │ ├── test_format.py │ ├── test_jsonschemas.py │ └── test_task_samples.py │ ├── environment │ ├── __init__.py │ └── platforms │ │ ├── __init__.py │ │ └── test_existing.py │ ├── fakes.py │ ├── rally_jobs │ ├── __init__.py │ ├── test_jobs.py │ └── test_zuul_jobs.py │ ├── task │ ├── __init__.py │ ├── cleanup │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_manager.py │ │ └── test_resources.py │ ├── contexts │ │ ├── __init__.py │ │ ├── cinder │ │ │ ├── __init__.py │ │ │ ├── test_volume_types.py │ │ │ └── test_volumes.py │ │ ├── cleanup │ │ │ ├── __init__.py │ │ │ ├── test_admin.py │ │ │ └── test_user.py │ │ ├── dataplane │ │ │ ├── __init__.py │ │ │ └── test_heat.py │ │ ├── designate │ │ │ ├── __init__.py │ │ │ └── test_zones.py │ │ ├── glance │ │ │ ├── __init__.py │ │ │ └── test_images.py │ │ ├── heat │ │ │ ├── __init__.py │ │ │ └── test_stacks.py │ │ ├── keystone │ │ │ ├── __init__.py │ │ │ ├── test_roles.py │ │ │ └── test_users.py │ │ ├── magnum │ │ │ ├── __init__.py │ │ │ ├── test_ca_certs.py │ │ │ ├── test_cluster_templates.py │ │ │ └── test_clusters.py │ │ ├── manila │ │ │ ├── __init__.py │ │ │ ├── test_manila_security_services.py │ │ │ ├── test_manila_share_networks.py │ │ │ └── test_manila_shares.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── test_allow_ssh.py │ │ │ ├── test_existing_network.py │ │ │ ├── test_network.py │ │ │ ├── test_networking_agents.py │ │ │ └── test_routers.py │ │ ├── neutron │ │ │ ├── __init__.py │ │ │ └── test_lbaas.py │ │ ├── nova │ │ │ ├── __init__.py │ │ │ ├── test_flavors.py │ │ │ ├── test_keypairs.py │ │ │ └── test_servers.py │ │ ├── quotas │ │ │ ├── __init__.py │ │ │ ├── test_cinder_quotas.py │ │ │ ├── test_designate_quotas.py │ │ │ ├── test_manila_quotas.py │ │ │ ├── test_neutron_quotas.py │ │ │ ├── test_nova_quotas.py │ │ │ └── test_quotas.py │ │ ├── swift │ │ │ ├── __init__.py │ │ │ ├── test_objects.py │ │ │ └── test_utils.py │ │ ├── test_api_versions.py │ │ ├── vm │ │ │ ├── __init__.py │ │ │ ├── test_custom_image.py │ │ │ └── test_image_command_customizer.py │ │ └── watcher │ │ │ ├── __init__.py │ │ │ └── test_audit_templates.py │ ├── hooks │ │ ├── __init__.py │ │ └── test_fault_injection.py │ ├── scenarios │ │ ├── __init__.py │ │ ├── authenticate │ │ │ ├── __init__.py │ │ │ └── test_authenticate.py │ │ ├── barbican │ │ │ ├── __init__.py │ │ │ ├── test_containers.py │ │ │ ├── test_orders.py │ │ │ ├── test_secrets.py │ │ │ └── test_utils.py │ │ ├── cinder │ │ │ ├── __init__.py │ │ │ ├── test_qos_specs.py │ │ │ ├── test_utils.py │ │ │ ├── test_volume_backups.py │ │ │ ├── test_volume_types.py │ │ │ └── test_volumes.py │ │ ├── designate │ │ │ ├── __init__.py │ │ │ ├── test_basic.py │ │ │ └── test_utils.py │ │ ├── glance │ │ │ ├── __init__.py │ │ │ └── test_images.py │ │ ├── gnocchi │ │ │ ├── __init__.py │ │ │ ├── test_archive_policy.py │ │ │ ├── test_archive_policy_rule.py │ │ │ ├── test_capabilities.py │ │ │ ├── test_metric.py │ │ │ ├── test_resource.py │ │ │ ├── test_resource_type.py │ │ │ ├── test_status.py │ │ │ └── test_utils.py │ │ ├── heat │ │ │ ├── __init__.py │ │ │ ├── test_stacks.py │ │ │ └── test_utils.py │ │ ├── ironic │ │ │ ├── __init__.py │ │ │ ├── test_nodes.py │ │ │ └── test_utils.py │ │ ├── keystone │ │ │ ├── __init__.py │ │ │ └── test_basic.py │ │ ├── loadbalancer │ │ │ ├── __init__.py │ │ │ ├── test_loadbalancers.py │ │ │ ├── test_pools.py │ │ │ └── test_utils.py │ │ ├── magnum │ │ │ ├── __init__.py │ │ │ ├── test_cluster_templates.py │ │ │ ├── test_clusters.py │ │ │ ├── test_k8s_pods.py │ │ │ └── test_utils.py │ │ ├── manila │ │ │ ├── __init__.py │ │ │ ├── test_shares.py │ │ │ └── test_utils.py │ │ ├── mistral │ │ │ ├── __init__.py │ │ │ ├── test_executions.py │ │ │ ├── test_utils.py │ │ │ └── test_workbooks.py │ │ ├── neutron │ │ │ ├── __init__.py │ │ │ ├── test_bgpvpn.py │ │ │ ├── test_loadbalancer_v1.py │ │ │ ├── test_loadbalancer_v2.py │ │ │ ├── test_network.py │ │ │ ├── test_security_groups.py │ │ │ ├── test_trunk.py │ │ │ └── test_utils.py │ │ ├── nova │ │ │ ├── __init__.py │ │ │ ├── test_aggregates.py │ │ │ ├── test_availability_zones.py │ │ │ ├── test_flavors.py │ │ │ ├── test_hypervisors.py │ │ │ ├── test_keypairs.py │ │ │ ├── test_server_groups.py │ │ │ ├── test_servers.py │ │ │ ├── test_services.py │ │ │ └── test_utils.py │ │ ├── quotas │ │ │ ├── __init__.py │ │ │ ├── test_quotas.py │ │ │ └── test_utils.py │ │ ├── swift │ │ │ ├── __init__.py │ │ │ ├── test_objects.py │ │ │ └── test_utils.py │ │ ├── vm │ │ │ ├── __init__.py │ │ │ ├── test_utils.py │ │ │ ├── test_vmtasks.py │ │ │ └── workloads │ │ │ │ ├── __init__.py │ │ │ │ └── test_siege.py │ │ ├── watcher │ │ │ ├── __init__.py │ │ │ ├── test_basic.py │ │ │ └── test_utils.py │ │ └── zaqar │ │ │ ├── __init__.py │ │ │ ├── test_basic.py │ │ │ └── test_utils.py │ ├── test_context.py │ ├── test_scenario.py │ ├── test_types.py │ └── ui │ │ ├── __init__.py │ │ └── charts │ │ └── test_osprofilerchart.py │ ├── test.py │ ├── test__compat.py │ ├── test_ddt.py │ ├── test_hacking.py │ ├── test_mock.py │ ├── test_plugins.py │ ├── test_pytest_launcher.py │ ├── test_test_ddt.py │ ├── test_test_mock.py │ ├── test_workarounds.py │ └── verification │ ├── __init__.py │ └── tempest │ ├── __init__.py │ ├── test_config.py │ ├── test_context.py │ └── test_manager.py ├── tox.ini ├── types-requirements.txt └── upper-constraints.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.gitreview -------------------------------------------------------------------------------- /.zuul.d/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/README.rst -------------------------------------------------------------------------------- /.zuul.d/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/base.yaml -------------------------------------------------------------------------------- /.zuul.d/docker-jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/docker-jobs.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-barbican.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-barbican.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-basic-with-existing-users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-basic-with-existing-users.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-cinder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-cinder.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-designate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-designate.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-heat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-heat.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-ironic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-ironic.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-keystone-glance-swift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-keystone-glance-swift.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-magnum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-magnum.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-manila.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-manila.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-mistral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-mistral.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-neutron-trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-neutron-trunk.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-neutron-with-extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-neutron-with-extensions.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-neutron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-neutron.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-nova.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-nova.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-octavia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-octavia.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-simple-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-simple-job.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-telemetry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-telemetry.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-watcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-watcher.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-task-zaqar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-task-zaqar.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-tox-functional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-tox-functional.yaml -------------------------------------------------------------------------------- /.zuul.d/rally-verify-tempest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/rally-verify-tempest.yaml -------------------------------------------------------------------------------- /.zuul.d/zuul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/.zuul.d/zuul.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /DOCKER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/DOCKER_README.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/README.rst -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/bindep.txt -------------------------------------------------------------------------------- /devstack/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/devstack/README.rst -------------------------------------------------------------------------------- /devstack/lib/rally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/devstack/lib/rally -------------------------------------------------------------------------------- /devstack/plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/devstack/plugin.sh -------------------------------------------------------------------------------- /devstack/settings: -------------------------------------------------------------------------------- 1 | # Devstack settings 2 | 3 | enable_service rally 4 | -------------------------------------------------------------------------------- /etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/etc/motd -------------------------------------------------------------------------------- /etc/rally/rally-config-generator.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/etc/rally/rally-config-generator.conf -------------------------------------------------------------------------------- /etc/rally/rally.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/etc/rally/rally.conf.sample -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rally-jobs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/README.rst -------------------------------------------------------------------------------- /rally-jobs/barbican.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/barbican.yaml -------------------------------------------------------------------------------- /rally-jobs/basic-with-existing-users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/basic-with-existing-users.yaml -------------------------------------------------------------------------------- /rally-jobs/certifcation_task_args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/certifcation_task_args.yaml -------------------------------------------------------------------------------- /rally-jobs/cinder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/cinder.yaml -------------------------------------------------------------------------------- /rally-jobs/designate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/designate.yaml -------------------------------------------------------------------------------- /rally-jobs/extra/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/README.rst -------------------------------------------------------------------------------- /rally-jobs/extra/autoscaling_group.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/autoscaling_group.yaml.template -------------------------------------------------------------------------------- /rally-jobs/extra/autoscaling_policy.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/autoscaling_policy.yaml.template -------------------------------------------------------------------------------- /rally-jobs/extra/default.yaml.template: -------------------------------------------------------------------------------- 1 | heat_template_version: 2014-10-16 -------------------------------------------------------------------------------- /rally-jobs/extra/hook_example_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/hook_example_script.sh -------------------------------------------------------------------------------- /rally-jobs/extra/install_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/install_benchmark.sh -------------------------------------------------------------------------------- /rally-jobs/extra/instance_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/instance_test.sh -------------------------------------------------------------------------------- /rally-jobs/extra/mistral_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/mistral_input.json -------------------------------------------------------------------------------- /rally-jobs/extra/mistral_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/mistral_params.json -------------------------------------------------------------------------------- /rally-jobs/extra/mistral_wb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/mistral_wb.yaml -------------------------------------------------------------------------------- /rally-jobs/extra/random_strings.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/random_strings.yaml.template -------------------------------------------------------------------------------- /rally-jobs/extra/resource_group.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/resource_group.yaml.template -------------------------------------------------------------------------------- /rally-jobs/extra/server_with_ports.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/server_with_ports.yaml.template -------------------------------------------------------------------------------- /rally-jobs/extra/server_with_volume.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/server_with_volume.yaml.template -------------------------------------------------------------------------------- /rally-jobs/extra/workload/wordpress_heat_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/workload/wordpress_heat_template.yaml -------------------------------------------------------------------------------- /rally-jobs/extra/workload/wp-instances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/extra/workload/wp-instances.yaml -------------------------------------------------------------------------------- /rally-jobs/heat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/heat.yaml -------------------------------------------------------------------------------- /rally-jobs/ironic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/ironic.yaml -------------------------------------------------------------------------------- /rally-jobs/keystone-glance-swift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/keystone-glance-swift.yaml -------------------------------------------------------------------------------- /rally-jobs/magnum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/magnum.yaml -------------------------------------------------------------------------------- /rally-jobs/manila-no-ss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/manila-no-ss.yaml -------------------------------------------------------------------------------- /rally-jobs/manila.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/manila.yaml -------------------------------------------------------------------------------- /rally-jobs/mistral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/mistral.yaml -------------------------------------------------------------------------------- /rally-jobs/neutron-trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/neutron-trunk.yaml -------------------------------------------------------------------------------- /rally-jobs/neutron-with-extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/neutron-with-extensions.yaml -------------------------------------------------------------------------------- /rally-jobs/neutron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/neutron.yaml -------------------------------------------------------------------------------- /rally-jobs/nova.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/nova.yaml -------------------------------------------------------------------------------- /rally-jobs/octavia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/octavia.yaml -------------------------------------------------------------------------------- /rally-jobs/plugins/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/plugins/README.rst -------------------------------------------------------------------------------- /rally-jobs/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally-jobs/plugins/fake_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/plugins/fake_plugin.py -------------------------------------------------------------------------------- /rally-jobs/plugins/rally_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/plugins/rally_profile.py -------------------------------------------------------------------------------- /rally-jobs/plugins/test_relative_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally-jobs/plugins/test_relative_import/zzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/plugins/test_relative_import/zzz.py -------------------------------------------------------------------------------- /rally-jobs/rally_args.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | image_name: "^cirros.*-disk$" 4 | -------------------------------------------------------------------------------- /rally-jobs/self-rally.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/self-rally.yaml -------------------------------------------------------------------------------- /rally-jobs/simple-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/simple-job.yaml -------------------------------------------------------------------------------- /rally-jobs/telemetry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/telemetry.yaml -------------------------------------------------------------------------------- /rally-jobs/watcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/watcher.yaml -------------------------------------------------------------------------------- /rally-jobs/zaqar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally-jobs/zaqar.yaml -------------------------------------------------------------------------------- /rally_openstack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/__init__.py -------------------------------------------------------------------------------- /rally_openstack/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/_compat.py -------------------------------------------------------------------------------- /rally_openstack/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/cfg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/cfg/cinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/cinder.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/cleanup.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/glance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/glance.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/heat.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/ironic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/ironic.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/keystone_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/keystone_roles.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/keystone_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/keystone_users.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/magnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/magnum.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/manila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/manila.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/mistral.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/neutron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/neutron.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/nova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/nova.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/octavia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/octavia.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/opts.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/osclients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/osclients.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/profiler.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/tempest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/tempest.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/vm.py -------------------------------------------------------------------------------- /rally_openstack/common/cfg/watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/cfg/watcher.py -------------------------------------------------------------------------------- /rally_openstack/common/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/consts.py -------------------------------------------------------------------------------- /rally_openstack/common/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/credential.py -------------------------------------------------------------------------------- /rally_openstack/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/exceptions.py -------------------------------------------------------------------------------- /rally_openstack/common/osclients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/osclients.py -------------------------------------------------------------------------------- /rally_openstack/common/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/service.py -------------------------------------------------------------------------------- /rally_openstack/common/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/gnocchi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/gnocchi/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/gnocchi/metric.py -------------------------------------------------------------------------------- /rally_openstack/common/services/grafana/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/grafana/grafana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/grafana/grafana.py -------------------------------------------------------------------------------- /rally_openstack/common/services/heat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/heat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/heat/main.py -------------------------------------------------------------------------------- /rally_openstack/common/services/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/identity/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/identity/identity.py -------------------------------------------------------------------------------- /rally_openstack/common/services/identity/keystone_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/identity/keystone_v2.py -------------------------------------------------------------------------------- /rally_openstack/common/services/identity/keystone_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/identity/keystone_v3.py -------------------------------------------------------------------------------- /rally_openstack/common/services/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/image/glance_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/image/glance_common.py -------------------------------------------------------------------------------- /rally_openstack/common/services/image/glance_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/image/glance_v1.py -------------------------------------------------------------------------------- /rally_openstack/common/services/image/glance_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/image/glance_v2.py -------------------------------------------------------------------------------- /rally_openstack/common/services/image/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/image/image.py -------------------------------------------------------------------------------- /rally_openstack/common/services/key_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/key_manager/barbican.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/key_manager/barbican.py -------------------------------------------------------------------------------- /rally_openstack/common/services/loadbalancer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/loadbalancer/octavia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/loadbalancer/octavia.py -------------------------------------------------------------------------------- /rally_openstack/common/services/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/network/net_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/network/net_utils.py -------------------------------------------------------------------------------- /rally_openstack/common/services/network/neutron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/network/neutron.py -------------------------------------------------------------------------------- /rally_openstack/common/services/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/services/storage/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/storage/block.py -------------------------------------------------------------------------------- /rally_openstack/common/services/storage/cinder_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/storage/cinder_common.py -------------------------------------------------------------------------------- /rally_openstack/common/services/storage/cinder_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/storage/cinder_v1.py -------------------------------------------------------------------------------- /rally_openstack/common/services/storage/cinder_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/storage/cinder_v2.py -------------------------------------------------------------------------------- /rally_openstack/common/services/storage/cinder_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/services/storage/cinder_v3.py -------------------------------------------------------------------------------- /rally_openstack/common/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/validators.py -------------------------------------------------------------------------------- /rally_openstack/common/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/common/wrappers/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/common/wrappers/network.py -------------------------------------------------------------------------------- /rally_openstack/environment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/environment/platforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/environment/platforms/existing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/environment/platforms/existing.py -------------------------------------------------------------------------------- /rally_openstack/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/cleanup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/cleanup/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/cleanup/base.py -------------------------------------------------------------------------------- /rally_openstack/task/cleanup/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/cleanup/manager.py -------------------------------------------------------------------------------- /rally_openstack/task/cleanup/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/cleanup/resources.py -------------------------------------------------------------------------------- /rally_openstack/task/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/context.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/api_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/api_versions.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/cinder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/cinder/volume_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/cinder/volume_types.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/cinder/volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/cinder/volumes.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/cleanup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/cleanup/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/cleanup/admin.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/cleanup/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/cleanup/base.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/cleanup/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/cleanup/user.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/dataplane/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/dataplane/heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/dataplane/heat.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/designate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/designate/zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/designate/zones.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/glance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/glance/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/glance/images.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/heat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/heat/stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/heat/stacks.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/keystone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/keystone/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/keystone/roles.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/keystone/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/keystone/users.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/magnum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/magnum/ca_certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/magnum/ca_certs.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/magnum/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/magnum/clusters.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/manila/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/manila/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/manila/consts.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/manila/manila_shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/manila/manila_shares.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/network/allow_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/network/allow_ssh.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/network/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/network/networks.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/network/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/network/routers.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/neutron/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/neutron/lbaas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/neutron/lbaas.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/nova/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/nova/flavors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/nova/flavors.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/nova/keypairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/nova/keypairs.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/nova/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/nova/servers.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/quotas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/quotas/cinder_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/quotas/cinder_quotas.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/quotas/designate_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/quotas/designate_quotas.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/quotas/manila_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/quotas/manila_quotas.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/quotas/neutron_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/quotas/neutron_quotas.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/quotas/nova_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/quotas/nova_quotas.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/quotas/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/quotas/quotas.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/swift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/swift/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/swift/objects.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/swift/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/swift/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/vm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/vm/custom_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/vm/custom_image.py -------------------------------------------------------------------------------- /rally_openstack/task/contexts/watcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/contexts/watcher/audit_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/contexts/watcher/audit_templates.py -------------------------------------------------------------------------------- /rally_openstack/task/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/hooks/fault_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/hooks/fault_injection.py -------------------------------------------------------------------------------- /rally_openstack/task/scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenario.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/authenticate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/barbican/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/barbican/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/barbican/containers.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/barbican/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/barbican/orders.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/barbican/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/barbican/secrets.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/barbican/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/barbican/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/cinder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/cinder/qos_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/cinder/qos_specs.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/cinder/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/cinder/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/cinder/volume_backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/cinder/volume_backups.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/cinder/volume_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/cinder/volume_types.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/cinder/volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/cinder/volumes.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/designate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/designate/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/designate/basic.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/designate/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/designate/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/dummy.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/elasticsearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/elasticsearch/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/elasticsearch/logging.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/glance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/glance/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/glance/images.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/gnocchi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/gnocchi/archive_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/gnocchi/archive_policy.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/gnocchi/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/gnocchi/capabilities.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/gnocchi/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/gnocchi/metric.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/gnocchi/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/gnocchi/resource.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/gnocchi/resource_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/gnocchi/resource_type.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/gnocchi/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/gnocchi/status.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/gnocchi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/gnocchi/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/grafana/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/grafana/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/grafana/metrics.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/heat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/heat/stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/heat/stacks.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/heat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/heat/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/ironic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/ironic/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/ironic/nodes.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/ironic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/ironic/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/keystone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/keystone/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/keystone/basic.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/magnum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/magnum/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/magnum/clusters.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/magnum/k8s_pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/magnum/k8s_pods.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/magnum/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/magnum/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/manila/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/manila/shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/manila/shares.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/manila/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/manila/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/mistral/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/mistral/executions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/mistral/executions.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/mistral/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/mistral/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/mistral/workbooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/mistral/workbooks.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/neutron/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/neutron/bgpvpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/neutron/bgpvpn.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/neutron/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/neutron/network.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/neutron/trunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/neutron/trunk.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/neutron/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/neutron/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/nova/aggregates.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/flavors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/nova/flavors.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/hypervisors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/nova/hypervisors.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/keypairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/nova/keypairs.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/server_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/nova/server_groups.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/nova/servers.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/nova/services.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/nova/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/nova/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/octavia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/octavia/loadbalancers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/octavia/loadbalancers.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/octavia/pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/octavia/pools.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/octavia/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/octavia/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/quotas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/quotas/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/quotas/quotas.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/quotas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/quotas/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/swift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/swift/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/swift/objects.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/swift/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/swift/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/vm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/vm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/vm/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/vm/vmtasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/vm/vmtasks.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/vm/workloads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/vm/workloads/siege.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/vm/workloads/siege.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/watcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/watcher/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/watcher/basic.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/watcher/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/watcher/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/zaqar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/zaqar/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/zaqar/basic.py -------------------------------------------------------------------------------- /rally_openstack/task/scenarios/zaqar/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/scenarios/zaqar/utils.py -------------------------------------------------------------------------------- /rally_openstack/task/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/types.py -------------------------------------------------------------------------------- /rally_openstack/task/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/ui/charts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/task/ui/charts/osprofilerchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/task/ui/charts/osprofilerchart.py -------------------------------------------------------------------------------- /rally_openstack/verification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/verification/tempest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally_openstack/verification/tempest/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/verification/tempest/config.ini -------------------------------------------------------------------------------- /rally_openstack/verification/tempest/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/verification/tempest/config.py -------------------------------------------------------------------------------- /rally_openstack/verification/tempest/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/verification/tempest/consts.py -------------------------------------------------------------------------------- /rally_openstack/verification/tempest/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/verification/tempest/context.py -------------------------------------------------------------------------------- /rally_openstack/verification/tempest/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/rally_openstack/verification/tempest/manager.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/README.rst -------------------------------------------------------------------------------- /samples/deployments/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/deployments/README.rst -------------------------------------------------------------------------------- /samples/deployments/existing-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/deployments/existing-api.json -------------------------------------------------------------------------------- /samples/deployments/existing-keystone-v3-osprofiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/deployments/existing-keystone-v3-osprofiler.json -------------------------------------------------------------------------------- /samples/deployments/existing-keystone-v3-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/deployments/existing-keystone-v3-user.json -------------------------------------------------------------------------------- /samples/deployments/existing-keystone-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/deployments/existing-keystone-v3.json -------------------------------------------------------------------------------- /samples/deployments/existing-with-predefined-users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/deployments/existing-with-predefined-users.json -------------------------------------------------------------------------------- /samples/deployments/existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/deployments/existing.json -------------------------------------------------------------------------------- /samples/tasks/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/README.rst -------------------------------------------------------------------------------- /samples/tasks/contexts/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/README.rst -------------------------------------------------------------------------------- /samples/tasks/contexts/allow-ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/allow-ssh.json -------------------------------------------------------------------------------- /samples/tasks/contexts/allow-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/allow-ssh.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/api-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/api-versions.json -------------------------------------------------------------------------------- /samples/tasks/contexts/api-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/api-versions.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/audit-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/audit-templates.json -------------------------------------------------------------------------------- /samples/tasks/contexts/audit-templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/audit-templates.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/ca-certs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/ca-certs.json -------------------------------------------------------------------------------- /samples/tasks/contexts/ca-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/ca-certs.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/cluster-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/cluster-templates.json -------------------------------------------------------------------------------- /samples/tasks/contexts/cluster-templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/cluster-templates.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/clusters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/clusters.json -------------------------------------------------------------------------------- /samples/tasks/contexts/clusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/clusters.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/dummy-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/dummy-context.json -------------------------------------------------------------------------------- /samples/tasks/contexts/dummy-context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/dummy-context.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/existing-network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/existing-network.json -------------------------------------------------------------------------------- /samples/tasks/contexts/existing-network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/existing-network.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/flavors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/flavors.json -------------------------------------------------------------------------------- /samples/tasks/contexts/flavors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/flavors.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/heat-dataplane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/heat-dataplane.json -------------------------------------------------------------------------------- /samples/tasks/contexts/heat-dataplane.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/heat-dataplane.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/image-command-customizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/image-command-customizer.json -------------------------------------------------------------------------------- /samples/tasks/contexts/image-command-customizer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/image-command-customizer.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/images.json -------------------------------------------------------------------------------- /samples/tasks/contexts/images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/images.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/keypair.json -------------------------------------------------------------------------------- /samples/tasks/contexts/keypair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/keypair.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/lbaas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/lbaas.json -------------------------------------------------------------------------------- /samples/tasks/contexts/lbaas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/lbaas.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/loadbalancers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/loadbalancers.json -------------------------------------------------------------------------------- /samples/tasks/contexts/loadbalancers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/loadbalancers.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/manila-security-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/manila-security-services.json -------------------------------------------------------------------------------- /samples/tasks/contexts/manila-security-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/manila-security-services.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/manila-share-networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/manila-share-networks.json -------------------------------------------------------------------------------- /samples/tasks/contexts/manila-share-networks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/manila-share-networks.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/manila-shares.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/manila-shares.json -------------------------------------------------------------------------------- /samples/tasks/contexts/manila-shares.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/manila-shares.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/network.json -------------------------------------------------------------------------------- /samples/tasks/contexts/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/network.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/networking-agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/networking-agents.json -------------------------------------------------------------------------------- /samples/tasks/contexts/networking-agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/networking-agents.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/quotas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/quotas.json -------------------------------------------------------------------------------- /samples/tasks/contexts/quotas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/quotas.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/roles.json -------------------------------------------------------------------------------- /samples/tasks/contexts/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/roles.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/router.json -------------------------------------------------------------------------------- /samples/tasks/contexts/router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/router.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/servers.json -------------------------------------------------------------------------------- /samples/tasks/contexts/servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/servers.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/stacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/stacks.json -------------------------------------------------------------------------------- /samples/tasks/contexts/stacks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/stacks.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/swift-objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/swift-objects.json -------------------------------------------------------------------------------- /samples/tasks/contexts/swift-objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/swift-objects.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/users.json -------------------------------------------------------------------------------- /samples/tasks/contexts/users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/users.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/volume-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/volume-types.json -------------------------------------------------------------------------------- /samples/tasks/contexts/volume-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/volume-types.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/volumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/volumes.json -------------------------------------------------------------------------------- /samples/tasks/contexts/volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/volumes.yaml -------------------------------------------------------------------------------- /samples/tasks/contexts/zones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/zones.json -------------------------------------------------------------------------------- /samples/tasks/contexts/zones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/contexts/zones.yaml -------------------------------------------------------------------------------- /samples/tasks/runners/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/runners/README.rst -------------------------------------------------------------------------------- /samples/tasks/runners/constant/constant-timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/runners/constant/constant-timeout.json -------------------------------------------------------------------------------- /samples/tasks/runners/constant/constant-timeout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/runners/constant/constant-timeout.yaml -------------------------------------------------------------------------------- /samples/tasks/runners/rps/rps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/runners/rps/rps.json -------------------------------------------------------------------------------- /samples/tasks/runners/rps/rps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/runners/rps/rps.yaml -------------------------------------------------------------------------------- /samples/tasks/runners/serial/serial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/runners/serial/serial.json -------------------------------------------------------------------------------- /samples/tasks/runners/serial/serial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/runners/serial/serial.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/README.rst -------------------------------------------------------------------------------- /samples/tasks/scenarios/authenticate/keystone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/authenticate/keystone.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/authenticate/keystone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/authenticate/keystone.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/create-secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/create-secret.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/create-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/create-secret.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/get-secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/get-secret.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/get-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/get-secret.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/list-containers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/list-containers.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/list-containers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/list-containers.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/list-orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/list-orders.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/list-orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/list-orders.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/list-secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/list-secrets.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/barbican/list-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/barbican/list-secrets.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-and-get-qos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-and-get-qos.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-and-get-qos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-and-get-qos.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-and-list-qos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-and-list-qos.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-and-list-qos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-and-list-qos.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-and-set-qos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-and-set-qos.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-and-set-qos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-and-set-qos.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-volume-backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-volume-backup.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-volume-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-volume-backup.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-volume.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/create-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/create-volume.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/list-transfers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/list-transfers.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/list-transfers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/list-transfers.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/list-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/list-types.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/list-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/list-types.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/list-volumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/list-volumes.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/cinder/list-volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/cinder/list-volumes.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/designate/list-recordsets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/designate/list-recordsets.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/designate/list-recordsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/designate/list-recordsets.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/designate/list-zones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/designate/list-zones.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/designate/list-zones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/designate/list-zones.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-exception.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-exception.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-exception.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-exception.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-failure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-failure.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-failure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-failure.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-openstack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-openstack.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-openstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-openstack.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-output.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-output.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-random-action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-random-action.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy-random-action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy-random-action.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/dummy/dummy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/dummy/dummy.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/elasticsearch/log-instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/elasticsearch/log-instance.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/elasticsearch/log-instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/elasticsearch/log-instance.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/glance/create-and-get-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/glance/create-and-get-image.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/glance/create-and-get-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/glance/create-and-get-image.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/glance/list-images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/glance/list-images.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/glance/list-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/glance/list-images.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/create-metric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/create-metric.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/create-metric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/create-metric.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/create-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/create-resource.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/create-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/create-resource.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/get-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/get-status.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/get-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/get-status.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/list-archive-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/list-archive-policy.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/list-archive-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/list-archive-policy.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/list-capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/list-capabilities.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/list-capabilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/list-capabilities.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/list-metric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/list-metric.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/list-metric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/list-metric.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/list-resource-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/list-resource-type.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/gnocchi/list-resource-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/gnocchi/list-resource-type.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/grafana/push-metric-locally.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/grafana/push-metric-locally.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/grafana/push-metric-locally.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/grafana/push-metric-locally.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/heat/create-and-list-stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/heat/create-and-list-stack.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/heat/create-and-list-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/heat/create-and-list-stack.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/heat/create-stack-and-scale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/heat/create-stack-and-scale.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/heat/create-stack-and-scale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/heat/create-stack-and-scale.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/heat/list-stack-and-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/heat/list-stack-and-event.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/heat/list-stack-and-event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/heat/list-stack-and-event.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/heat/templates/default.yaml.template: -------------------------------------------------------------------------------- 1 | heat_template_version: 2014-10-16 -------------------------------------------------------------------------------- /samples/tasks/scenarios/ironic/create-and-list-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/ironic/create-and-list-node.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/ironic/create-and-list-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/ironic/create-and-list-node.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/keystone/create-tenant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/keystone/create-tenant.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/keystone/create-tenant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/keystone/create-tenant.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/keystone/create-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/keystone/create-user.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/keystone/create-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/keystone/create-user.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/keystone/get-entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/keystone/get-entities.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/keystone/get-entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/keystone/get-entities.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/artifacts/nginx.yaml.k8s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/artifacts/nginx.yaml.k8s -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/create-pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/create-pods.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/create-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/create-pods.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/create-rcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/create-rcs.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/create-rcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/create-rcs.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/list-clusters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/list-clusters.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/list-clusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/list-clusters.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/list-pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/list-pods.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/magnum/list-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/magnum/list-pods.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/manila/list-share-servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/manila/list-share-servers.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/manila/list-share-servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/manila/list-share-servers.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/manila/list-shares.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/manila/list-shares.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/manila/list-shares.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/manila/list-shares.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/mistral/create-execution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/mistral/create-execution.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/mistral/create-execution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/mistral/create-execution.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/mistral/create-workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/mistral/create-workbook.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/mistral/create-workbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/mistral/create-workbook.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/mistral/list-executions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/mistral/list-executions.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/mistral/list-executions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/mistral/list-executions.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/mistral/list-workbooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/mistral/list-workbooks.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/mistral/list-workbooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/mistral/list-workbooks.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/neutron/delete-subnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/neutron/delete-subnets.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/neutron/delete-subnets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/neutron/delete-subnets.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/neutron/list-agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/neutron/list-agents.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/neutron/list-agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/neutron/list-agents.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-block-migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-block-migrate.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-block-migrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-block-migrate.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-delete.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-delete.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-list.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-list.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-live-migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-live-migrate.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-live-migrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-live-migrate.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-migrate.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-migrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-migrate.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-rebuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-rebuild.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-rebuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-rebuild.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-show-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-show-server.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-show-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-show-server.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-update-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-update-server.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-and-update-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-and-update-server.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-bounce-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-bounce-delete.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-bounce-delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-bounce-delete.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-from-volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-from-volume.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot-from-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot-from-volume.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/boot.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/create-and-get-flavor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/create-and-get-flavor.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/create-and-get-flavor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/create-and-get-flavor.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/create-and-get-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/create-and-get-keypair.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/create-and-get-keypair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/create-and-get-keypair.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/create-flavor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/create-flavor.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/create-flavor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/create-flavor.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-aggregates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-aggregates.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-aggregates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-aggregates.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-flavors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-flavors.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-flavors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-flavors.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-hypervisors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-hypervisors.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-hypervisors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-hypervisors.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-servers.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-servers.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-services.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/list-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/list-services.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/pause-and-unpause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/pause-and-unpause.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/pause-and-unpause.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/pause-and-unpause.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/resize-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/resize-server.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/resize-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/resize-server.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/resize-shutoff-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/resize-shutoff-server.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/resize-shutoff-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/resize-shutoff-server.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/shelve-and-unshelve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/shelve-and-unshelve.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/shelve-and-unshelve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/shelve-and-unshelve.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/statistics-hypervisors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/statistics-hypervisors.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/statistics-hypervisors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/statistics-hypervisors.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/suspend-and-resume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/suspend-and-resume.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/nova/suspend-and-resume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/nova/suspend-and-resume.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/cinder-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/cinder-get.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/cinder-get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/cinder-get.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/cinder-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/cinder-update.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/cinder-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/cinder-update.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/neutron-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/neutron-update.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/neutron-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/neutron-update.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/nova-get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/nova-get.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/nova-get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/nova-get.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/nova-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/nova-update.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/quotas/nova-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/quotas/nova-update.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/requests/check-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/requests/check-request.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/requests/check-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/requests/check-request.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/vm/boot-runcommand-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/vm/boot-runcommand-delete.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/vm/boot-runcommand-delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/vm/boot-runcommand-delete.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/vm/dd-load-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/vm/dd-load-test.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/vm/dd-load-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/vm/dd-load-test.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/workload/wordpress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/workload/wordpress.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/workload/wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/workload/wordpress.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/zaqar/create-queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/zaqar/create-queue.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/zaqar/create-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/zaqar/create-queue.yaml -------------------------------------------------------------------------------- /samples/tasks/scenarios/zaqar/producer-consumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/zaqar/producer-consumer.json -------------------------------------------------------------------------------- /samples/tasks/scenarios/zaqar/producer-consumer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/scenarios/zaqar/producer-consumer.yaml -------------------------------------------------------------------------------- /samples/tasks/sla/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/sla/README.rst -------------------------------------------------------------------------------- /samples/tasks/sla/create-and-delete-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/sla/create-and-delete-user.json -------------------------------------------------------------------------------- /samples/tasks/sla/create-and-delete-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/sla/create-and-delete-user.yaml -------------------------------------------------------------------------------- /samples/tasks/support/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/support/README.rst -------------------------------------------------------------------------------- /samples/tasks/support/instance_linpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/support/instance_linpack.sh -------------------------------------------------------------------------------- /samples/tasks/support/instance_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/samples/tasks/support/instance_test.sh -------------------------------------------------------------------------------- /tasks/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/README.rst -------------------------------------------------------------------------------- /tasks/openstack/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/README.rst -------------------------------------------------------------------------------- /tasks/openstack/macro/macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/macro/macro.yaml -------------------------------------------------------------------------------- /tasks/openstack/scenario/authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/scenario/authentication.yaml -------------------------------------------------------------------------------- /tasks/openstack/scenario/cinder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/scenario/cinder.yaml -------------------------------------------------------------------------------- /tasks/openstack/scenario/glance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/scenario/glance.yaml -------------------------------------------------------------------------------- /tasks/openstack/scenario/keystone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/scenario/keystone.yaml -------------------------------------------------------------------------------- /tasks/openstack/scenario/neutron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/scenario/neutron.yaml -------------------------------------------------------------------------------- /tasks/openstack/scenario/nova.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/scenario/nova.yaml -------------------------------------------------------------------------------- /tasks/openstack/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/task.yaml -------------------------------------------------------------------------------- /tasks/openstack/task_arguments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack/task_arguments.yaml -------------------------------------------------------------------------------- /tasks/openstack_metrics/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tasks/openstack_metrics/task.yaml -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/cover.sh -------------------------------------------------------------------------------- /tests/ci/pages/task-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/pages/task-index.html -------------------------------------------------------------------------------- /tests/ci/pages/verify-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/pages/verify-index.html -------------------------------------------------------------------------------- /tests/ci/playbooks/.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/.ansible-lint -------------------------------------------------------------------------------- /tests/ci/playbooks/docker-build-and-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/docker-build-and-check.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/docker-build-check-and-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/docker-build-check-and-push.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/fetch-html-and-json-reports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/fetch-html-and-json-reports.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/post-rally-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/post-rally-task.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/post-rally-verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/post-rally-verify.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/roles/check-task-sla/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/roles/check-task-sla/tasks/main.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/roles/list-os-resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/playbooks/roles/list-os-resources/library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/playbooks/roles/prepare-for-rally-task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/playbooks/roles/prepare-for-rally-task/library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/playbooks/roles/run-rally-task/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/roles/run-rally-task/tasks/main.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/run-rally-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/run-rally-task.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/run-rally-verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/run-rally-verify.yaml -------------------------------------------------------------------------------- /tests/ci/playbooks/tox-functional-env-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/playbooks/tox-functional-env-run.yaml -------------------------------------------------------------------------------- /tests/ci/pytest_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/pytest_launcher.py -------------------------------------------------------------------------------- /tests/ci/rally_functional_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/rally_functional_job.sh -------------------------------------------------------------------------------- /tests/ci/rally_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/rally_verify.py -------------------------------------------------------------------------------- /tests/ci/sync_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/ci/sync_requirements.py -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/extra/fake_dir/fake_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/functional/extra/fake_dir/fake_plugin.py -------------------------------------------------------------------------------- /tests/functional/test_certification_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/functional/test_certification_task.py -------------------------------------------------------------------------------- /tests/functional/test_cli_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/functional/test_cli_deployment.py -------------------------------------------------------------------------------- /tests/functional/test_cli_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/functional/test_cli_env.py -------------------------------------------------------------------------------- /tests/functional/test_cli_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/functional/test_cli_task.py -------------------------------------------------------------------------------- /tests/functional/test_task_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/functional/test_task_samples.py -------------------------------------------------------------------------------- /tests/functional/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/functional/utils.py -------------------------------------------------------------------------------- /tests/hacking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hacking/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/hacking/checks.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/barbican/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/barbican/test_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/barbican/test_secrets.py -------------------------------------------------------------------------------- /tests/unit/common/services/gnocchi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/gnocchi/test_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/gnocchi/test_metric.py -------------------------------------------------------------------------------- /tests/unit/common/services/heat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/heat/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/heat/test_main.py -------------------------------------------------------------------------------- /tests/unit/common/services/identity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/identity/test_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/identity/test_identity.py -------------------------------------------------------------------------------- /tests/unit/common/services/identity/test_keystone_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/identity/test_keystone_v2.py -------------------------------------------------------------------------------- /tests/unit/common/services/identity/test_keystone_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/identity/test_keystone_v3.py -------------------------------------------------------------------------------- /tests/unit/common/services/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/image/test_glance_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/image/test_glance_common.py -------------------------------------------------------------------------------- /tests/unit/common/services/image/test_glance_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/image/test_glance_v1.py -------------------------------------------------------------------------------- /tests/unit/common/services/image/test_glance_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/image/test_glance_v2.py -------------------------------------------------------------------------------- /tests/unit/common/services/image/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/image/test_image.py -------------------------------------------------------------------------------- /tests/unit/common/services/loadbalancer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/loadbalancer/test_octavia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/loadbalancer/test_octavia.py -------------------------------------------------------------------------------- /tests/unit/common/services/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/network/test_net_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/network/test_net_utils.py -------------------------------------------------------------------------------- /tests/unit/common/services/network/test_neutron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/network/test_neutron.py -------------------------------------------------------------------------------- /tests/unit/common/services/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/services/storage/test_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/storage/test_block.py -------------------------------------------------------------------------------- /tests/unit/common/services/storage/test_cinder_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/storage/test_cinder_common.py -------------------------------------------------------------------------------- /tests/unit/common/services/storage/test_cinder_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/storage/test_cinder_v1.py -------------------------------------------------------------------------------- /tests/unit/common/services/storage/test_cinder_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/storage/test_cinder_v2.py -------------------------------------------------------------------------------- /tests/unit/common/services/storage/test_cinder_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/services/storage/test_cinder_v3.py -------------------------------------------------------------------------------- /tests/unit/common/test_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/test_credential.py -------------------------------------------------------------------------------- /tests/unit/common/test_osclients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/test_osclients.py -------------------------------------------------------------------------------- /tests/unit/common/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/test_validators.py -------------------------------------------------------------------------------- /tests/unit/common/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common/wrappers/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/common/wrappers/test_network.py -------------------------------------------------------------------------------- /tests/unit/doc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/doc/test_docker_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/doc/test_docker_readme.py -------------------------------------------------------------------------------- /tests/unit/doc/test_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/doc/test_docstrings.py -------------------------------------------------------------------------------- /tests/unit/doc/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/doc/test_format.py -------------------------------------------------------------------------------- /tests/unit/doc/test_jsonschemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/doc/test_jsonschemas.py -------------------------------------------------------------------------------- /tests/unit/doc/test_task_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/doc/test_task_samples.py -------------------------------------------------------------------------------- /tests/unit/environment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/environment/platforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/environment/platforms/test_existing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/environment/platforms/test_existing.py -------------------------------------------------------------------------------- /tests/unit/fakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/fakes.py -------------------------------------------------------------------------------- /tests/unit/rally_jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/rally_jobs/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/rally_jobs/test_jobs.py -------------------------------------------------------------------------------- /tests/unit/rally_jobs/test_zuul_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/rally_jobs/test_zuul_jobs.py -------------------------------------------------------------------------------- /tests/unit/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/cleanup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/cleanup/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/cleanup/test_base.py -------------------------------------------------------------------------------- /tests/unit/task/cleanup/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/cleanup/test_manager.py -------------------------------------------------------------------------------- /tests/unit/task/cleanup/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/cleanup/test_resources.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/cinder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/cinder/test_volume_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/cinder/test_volume_types.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/cinder/test_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/cinder/test_volumes.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/cleanup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/cleanup/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/cleanup/test_admin.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/cleanup/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/cleanup/test_user.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/dataplane/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/dataplane/test_heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/dataplane/test_heat.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/designate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/designate/test_zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/designate/test_zones.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/glance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/glance/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/glance/test_images.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/heat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/heat/test_stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/heat/test_stacks.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/keystone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/keystone/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/keystone/test_roles.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/keystone/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/keystone/test_users.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/magnum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/magnum/test_ca_certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/magnum/test_ca_certs.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/magnum/test_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/magnum/test_clusters.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/manila/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/manila/test_manila_shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/manila/test_manila_shares.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/network/test_allow_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/network/test_allow_ssh.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/network/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/network/test_network.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/network/test_routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/network/test_routers.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/neutron/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/neutron/test_lbaas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/neutron/test_lbaas.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/nova/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/nova/test_flavors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/nova/test_flavors.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/nova/test_keypairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/nova/test_keypairs.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/nova/test_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/nova/test_servers.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/quotas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/quotas/test_cinder_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/quotas/test_cinder_quotas.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/quotas/test_designate_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/quotas/test_designate_quotas.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/quotas/test_manila_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/quotas/test_manila_quotas.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/quotas/test_neutron_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/quotas/test_neutron_quotas.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/quotas/test_nova_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/quotas/test_nova_quotas.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/quotas/test_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/quotas/test_quotas.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/swift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/swift/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/swift/test_objects.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/swift/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/swift/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/test_api_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/test_api_versions.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/vm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/vm/test_custom_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/vm/test_custom_image.py -------------------------------------------------------------------------------- /tests/unit/task/contexts/watcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/contexts/watcher/test_audit_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/contexts/watcher/test_audit_templates.py -------------------------------------------------------------------------------- /tests/unit/task/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/hooks/test_fault_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/hooks/test_fault_injection.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/authenticate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/barbican/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/barbican/test_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/barbican/test_containers.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/barbican/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/barbican/test_orders.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/barbican/test_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/barbican/test_secrets.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/barbican/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/barbican/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/cinder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/cinder/test_qos_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/cinder/test_qos_specs.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/cinder/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/cinder/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/cinder/test_volume_backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/cinder/test_volume_backups.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/cinder/test_volume_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/cinder/test_volume_types.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/cinder/test_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/cinder/test_volumes.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/designate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/designate/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/designate/test_basic.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/designate/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/designate/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/glance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/glance/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/glance/test_images.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/gnocchi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/gnocchi/test_archive_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/gnocchi/test_archive_policy.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/gnocchi/test_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/gnocchi/test_capabilities.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/gnocchi/test_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/gnocchi/test_metric.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/gnocchi/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/gnocchi/test_resource.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/gnocchi/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/gnocchi/test_status.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/gnocchi/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/gnocchi/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/heat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/heat/test_stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/heat/test_stacks.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/heat/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/heat/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/ironic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/ironic/test_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/ironic/test_nodes.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/ironic/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/ironic/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/keystone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/keystone/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/keystone/test_basic.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/loadbalancer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/loadbalancer/test_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/loadbalancer/test_pools.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/loadbalancer/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/loadbalancer/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/magnum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/magnum/test_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/magnum/test_clusters.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/magnum/test_k8s_pods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/magnum/test_k8s_pods.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/magnum/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/magnum/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/manila/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/manila/test_shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/manila/test_shares.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/manila/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/manila/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/mistral/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/mistral/test_executions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/mistral/test_executions.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/mistral/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/mistral/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/mistral/test_workbooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/mistral/test_workbooks.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/neutron/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/neutron/test_bgpvpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/neutron/test_bgpvpn.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/neutron/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/neutron/test_network.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/neutron/test_trunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/neutron/test_trunk.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/neutron/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/neutron/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/test_aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/nova/test_aggregates.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/test_flavors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/nova/test_flavors.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/test_hypervisors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/nova/test_hypervisors.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/test_keypairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/nova/test_keypairs.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/test_server_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/nova/test_server_groups.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/test_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/nova/test_servers.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/nova/test_services.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/nova/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/nova/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/quotas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/quotas/test_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/quotas/test_quotas.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/quotas/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/quotas/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/swift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/swift/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/swift/test_objects.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/swift/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/swift/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/vm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/vm/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/vm/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/vm/test_vmtasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/vm/test_vmtasks.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/vm/workloads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/vm/workloads/test_siege.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/vm/workloads/test_siege.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/watcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/watcher/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/watcher/test_basic.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/watcher/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/watcher/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/zaqar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/scenarios/zaqar/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/zaqar/test_basic.py -------------------------------------------------------------------------------- /tests/unit/task/scenarios/zaqar/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/scenarios/zaqar/test_utils.py -------------------------------------------------------------------------------- /tests/unit/task/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/test_context.py -------------------------------------------------------------------------------- /tests/unit/task/test_scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/test_scenario.py -------------------------------------------------------------------------------- /tests/unit/task/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/test_types.py -------------------------------------------------------------------------------- /tests/unit/task/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/task/ui/charts/test_osprofilerchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/task/ui/charts/test_osprofilerchart.py -------------------------------------------------------------------------------- /tests/unit/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test.py -------------------------------------------------------------------------------- /tests/unit/test__compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test__compat.py -------------------------------------------------------------------------------- /tests/unit/test_ddt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test_ddt.py -------------------------------------------------------------------------------- /tests/unit/test_hacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test_hacking.py -------------------------------------------------------------------------------- /tests/unit/test_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test_mock.py -------------------------------------------------------------------------------- /tests/unit/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test_plugins.py -------------------------------------------------------------------------------- /tests/unit/test_pytest_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test_pytest_launcher.py -------------------------------------------------------------------------------- /tests/unit/test_test_ddt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test_test_ddt.py -------------------------------------------------------------------------------- /tests/unit/test_test_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test_test_mock.py -------------------------------------------------------------------------------- /tests/unit/test_workarounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/test_workarounds.py -------------------------------------------------------------------------------- /tests/unit/verification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/verification/tempest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/verification/tempest/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/verification/tempest/test_config.py -------------------------------------------------------------------------------- /tests/unit/verification/tempest/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/verification/tempest/test_context.py -------------------------------------------------------------------------------- /tests/unit/verification/tempest/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tests/unit/verification/tempest/test_manager.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/tox.ini -------------------------------------------------------------------------------- /types-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/types-requirements.txt -------------------------------------------------------------------------------- /upper-constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/rally-openstack/HEAD/upper-constraints.txt --------------------------------------------------------------------------------