blob: f1a6f671d1b585e2a2f4c99e1b2984b2d554814c [file] [log] [blame]
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -04001[DEFAULT]
Attila Fazekasc3a095b2013-08-17 09:15:44 +02002#log_config = /opt/stack/tempest/etc/logging.conf.sample
Attila Fazekasbfd96e12013-07-31 17:19:10 +02003
4# disable logging to the stderr
Attila Fazekasd7bab662013-10-17 16:11:55 +02005use_stderr = false
Attila Fazekasbfd96e12013-07-31 17:19:10 +02006
7# log file
8log_file = tempest.log
9
10# lock/semaphore base directory
Matthew Treinish07248e52013-07-26 11:18:44 -040011lock_path=/tmp
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -040012
Marc Kodererb714de52013-08-08 09:21:46 +020013default_log_levels=tempest.stress=INFO,amqplib=WARN,sqlalchemy=WARN,boto=WARN,suds=INFO,keystone=INFO,eventlet.wsgi.server=WARN
14
Daryl Walleck587385b2012-03-03 13:00:26 -060015[identity]
Jay Pipes3f981df2012-03-27 18:59:44 -040016# This section contains configuration options that a variety of Tempest
17# test clients use when authenticating with different user/tenant
18# combinations
19
chris fattarsi8ed39ac2012-04-30 14:11:27 -070020# The type of endpoint for a Identity service. Unless you have a
21# custom Keystone service catalog implementation, you probably want to leave
22# this value as "identity"
23catalog_type = identity
Jay Pipescd8eaec2013-01-16 21:03:48 -050024# Ignore SSL certificate validation failures? Use when in testing
25# environments that have self-signed SSL certs.
Attila Fazekasd7bab662013-10-17 16:11:55 +020026disable_ssl_certificate_validation = false
Jay Pipes7c88eb22013-01-16 21:32:43 -050027# URL for where to find the OpenStack Identity API endpoint (Keystone)
28uri = http://127.0.0.1:5000/v2.0/
Brant Knudsonc7ca3342013-03-28 21:08:50 -050029# URL for where to find the OpenStack V3 Identity API endpoint (Keystone)
30uri_v3 = http://127.0.0.1:5000/v3/
Arata Notsu8f440392013-09-13 16:14:20 +090031# The identity region. Also used as the other services' region name unless
32# they are set explicitly.
K Jonathan Harkerd6ba4b42012-12-18 13:50:47 -080033region = RegionOne
Daryl Walleck587385b2012-03-03 13:00:26 -060034
Attila Fazekascadcb1f2013-01-21 23:10:53 +010035# This should be the username of a user WITHOUT administrative privileges
36username = demo
37# The above non-administrative user's password
38password = secret
39# The above non-administrative user's tenant name
40tenant_name = demo
41
42# This should be the username of an alternate user WITHOUT
43# administrative privileges
44alt_username = alt_demo
45# The above non-administrative user's password
46alt_password = secret
47# The above non-administrative user's tenant name
48alt_tenant_name = alt_demo
49
50# This should be the username of a user WITH administrative privileges
51admin_username = admin
Maru Newby28c1dce2013-04-08 20:02:06 +000052# The above administrative user's password
Attila Fazekascadcb1f2013-01-21 23:10:53 +010053admin_password = secret
Maru Newby28c1dce2013-04-08 20:02:06 +000054# The above administrative user's tenant name
Attila Fazekascadcb1f2013-01-21 23:10:53 +010055admin_tenant_name = admin
56
Russell Sim7f894a52013-09-13 10:35:21 +100057# The role that is required to administrate keystone.
58admin_role = admin
59
Daryl Walleck587385b2012-03-03 13:00:26 -060060[compute]
Jay Pipes3f981df2012-03-27 18:59:44 -040061# This section contains configuration options used when executing tests
62# against the OpenStack Compute API.
63
Jay Pipesf38eaac2012-06-21 13:37:35 -040064# Allows test cases to create/destroy tenants and users. This option
65# enables isolated test cases and better parallel execution,
66# but also requires that OpenStack Identity API admin credentials
67# are known.
68allow_tenant_isolation = true
69
Dan Smithd6ff6b72012-08-23 10:29:41 -070070# Allows test cases to create/destroy tenants and users. This option
71# enables isolated test cases and better parallel execution,
72# but also requires that OpenStack Identity API admin credentials
73# are known.
74allow_tenant_reuse = true
75
Daryl Walleck587385b2012-03-03 13:00:26 -060076# Reference data for tests. The ref and ref_alt should be
77# distinct images/flavors.
Jay Pipes3f981df2012-03-27 18:59:44 -040078image_ref = {$IMAGE_ID}
79image_ref_alt = {$IMAGE_ID_ALT}
80flavor_ref = 1
81flavor_ref_alt = 2
82
Ryan Hsucb2e1252013-09-03 21:44:49 -070083# User name used to authenticate to an instance
Maru Newbyaf292e82013-05-20 21:32:28 +000084image_ssh_user = root
Ryan Hsucb2e1252013-09-03 21:44:49 -070085
86# Password used to authenticate to an instance
87image_ssh_password = password
88
89# User name used to authenticate to an instance using the alternate image
Maru Newbyaf292e82013-05-20 21:32:28 +000090image_alt_ssh_user = root
91
Ryan Hsucb2e1252013-09-03 21:44:49 -070092# Password used to authenticate to an instance using the alternate image
93image_alt_ssh_password = password
94
Jay Pipes3f981df2012-03-27 18:59:44 -040095# Number of seconds to wait while looping to check the status of an
Rohit Karajgidd47d7e2012-07-31 04:11:01 -070096# instance that is building.
Jay Pipes3f981df2012-03-27 18:59:44 -040097build_interval = 10
98
Rohit Karajgidd47d7e2012-07-31 04:11:01 -070099# Number of seconds to time out on waiting for an instance
Jay Pipes3f981df2012-03-27 18:59:44 -0400100# to build or reach an expected status
101build_timeout = 600
102
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500103# Run additional tests that use SSH for instance validation?
104# This requires the instances be routable from the host
105# executing the tests
106run_ssh = false
107
Ryan Hsucb2e1252013-09-03 21:44:49 -0700108# Name of a user used to authenticate to an instance.
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100109ssh_user = cirros
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500110
Attila Fazekasb0661652013-05-08 13:01:36 +0200111# Visible fixed network name
112fixed_network_name = private
113
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500114# Network id used for SSH (public, private, etc)
Matt Riedemanna80778d2013-07-31 03:37:41 -0700115network_for_ssh = public
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500116
117# IP version of the address used for SSH
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100118ip_version_for_ssh = 4
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500119
Nachi Ueno6d580be2013-07-24 10:58:11 -0700120# Number of seconds to wait to ping to an instance
121ping_timeout = 60
122
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500123# Number of seconds to wait to authenticate to an instance
124ssh_timeout = 300
125
Attila Fazekas0abbc952013-07-01 19:19:42 +0200126# Additinal wait time for clean state, when there is
127# no OS-EXT-STS extension availiable
128ready_wait = 0
129
Chris Yeoh76916042013-02-27 16:25:25 +1030130# Number of seconds to wait for output from ssh channel
131ssh_channel_timeout = 60
132
fujioka yuuichia11994e2013-07-09 11:19:51 +0900133# Dose the SSH uses Floating IP?
Attila Fazekasd7bab662013-10-17 16:11:55 +0200134use_floatingip_for_ssh = true
fujioka yuuichia11994e2013-07-09 11:19:51 +0900135
Jay Pipes3f981df2012-03-27 18:59:44 -0400136# The type of endpoint for a Compute API service. Unless you have a
137# custom Keystone service catalog implementation, you probably want to leave
138# this value as "compute"
139catalog_type = compute
140
ivan-zhu8f992be2013-07-31 14:56:58 +0800141# The type of endpoint for a Compute v3 API service. Unless you have a
142# custom Keystone service catalog implementation, you probably want to leave
143# this value as "computev3"
144catalog_v3_type = computev3
145
Arata Notsu8f440392013-09-13 16:14:20 +0900146# The name of a region for compute. If empty or commented-out, the value of
147# identity.region is used instead. If no such region is found in the service
148# catalog, the first found one is used.
149#region = RegionOne
150
Matthew Treinishd5c96022013-10-17 21:51:23 +0000151# Expected first device name when a volume is attached to an instance
152volume_device_name = vdb
153
154[compute-feature-enabled]
ivan-zhu8f992be2013-07-31 14:56:58 +0800155# Do we run the Nova V3 API tests?
Joe Gordon277d3782013-11-19 18:55:42 -0800156api_v3 = false
ivan-zhu8f992be2013-07-31 14:56:58 +0800157
Jay Pipes3f981df2012-03-27 18:59:44 -0400158# Does the Compute API support creation of images?
Matthew Treinishd5c96022013-10-17 21:51:23 +0000159create_image = true
Jay Pipes3f981df2012-03-27 18:59:44 -0400160
David Kranz30fe84a2012-03-20 16:25:47 -0400161# For resize to work with libvirt/kvm, one of the following must be true:
Attila Fazekasd7bab662013-10-17 16:11:55 +0200162# Single node: allow_resize_to_same_host=true must be set in nova.conf
David Kranz30fe84a2012-03-20 16:25:47 -0400163# Cluster: the 'nova' user must have scp access between cluster nodes
Matthew Treinishd5c96022013-10-17 21:51:23 +0000164resize = true
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600165
David Kranzf97d5fd2012-07-30 13:46:45 -0400166# Does the compute API support changing the admin password?
Matthew Treinishd5c96022013-10-17 21:51:23 +0000167change_password = false
David Kranzf97d5fd2012-07-30 13:46:45 -0400168
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100169# Run live migration tests (requires 2 hosts)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000170live_migration = false
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100171
172# Use block live migration (Otherwise, non-block migration will be
173# performed, which requires XenServer pools in case of using XS)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000174block_migration_for_live_migration = false
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100175
Bob Ballc078be92013-04-09 14:25:00 +0100176# Supports iSCSI block migration - depends on a XAPI supporting
177# relax-xsm-sr-check
Matthew Treinishd5c96022013-10-17 21:51:23 +0000178block_migrate_cinder_iscsi = false
Bob Ballc078be92013-04-09 14:25:00 +0100179
Attila Fazekas86950732013-06-08 09:33:08 +0200180# When set to false, disk config tests are forced to skip
Matthew Treinishd5c96022013-10-17 21:51:23 +0000181disk_config = true
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100182
Attila Fazekas86950732013-06-08 09:33:08 +0200183# When set to false, flavor extra data tests are forced to skip
Matthew Treinishd5c96022013-10-17 21:51:23 +0000184flavor_extra = true
Ryan Hsucb2e1252013-09-03 21:44:49 -0700185
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100186[compute-admin]
187# This should be the username of a user WITH administrative privileges
188# If not defined the admin user from the identity section will be used
189username =
190# The above administrative user's password
191password =
192# The above administrative user's tenant name
193tenant_name =
Armando Migliacciob8cc2202012-12-12 17:20:51 +0000194
Eoghan Glynn4b10c7c2012-03-01 13:13:35 -0500195[image]
Jay Pipes3f981df2012-03-27 18:59:44 -0400196# This section contains configuration options used when executing tests
197# against the OpenStack Images API
198
Jay Pipesad6feca2012-04-30 15:10:18 -0400199# The type of endpoint for an Image API service. Unless you have a
200# custom Keystone service catalog implementation, you probably want to leave
201# this value as "image"
202catalog_type = image
203
Arata Notsu8f440392013-09-13 16:14:20 +0900204# The name of a region for image. If empty or commented-out, the value of
205# identity.region is used instead. If no such region is found in the service
206# catalog, the first found one is used.
207#region = RegionOne
208
Sean Dague83401992013-05-06 17:46:36 -0400209# HTTP image to use for glance http image testing
210http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
211
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000212[image-feature-enabled]
213# Is the image api_v1 enabled
214api_v1 = True
215# Is the image api_v2 enabled
216api_v2 = True
217
Unmesh Gurjar44986832012-05-08 19:57:10 +0530218[network]
219# This section contains configuration options used when executing tests
220# against the OpenStack Network API.
Rohit Karajgidd47d7e2012-07-31 04:11:01 -0700221
Mark McClainf2982e82013-07-06 17:48:03 -0400222# Version of the Neutron API
Unmesh Gurjar44986832012-05-08 19:57:10 +0530223api_version = v1.1
Mark McClainf2982e82013-07-06 17:48:03 -0400224# Catalog type of the Neutron Service
Unmesh Gurjar44986832012-05-08 19:57:10 +0530225catalog_type = network
Jay Pipesf38eaac2012-06-21 13:37:35 -0400226
Arata Notsu8f440392013-09-13 16:14:20 +0900227# The name of a region for network. If empty or commented-out, the value of
228# identity.region is used instead. If no such region is found in the service
229# catalog, the first found one is used.
230#region = RegionOne
231
Maru Newby81f07a02012-09-05 20:21:19 -0700232# A large private cidr block from which to allocate smaller blocks for
233# tenant networks.
234tenant_network_cidr = 10.100.0.0/16
235
236# The mask bits used to partition the tenant block.
Miguel Lavalleb8fabc52013-08-23 11:19:57 -0500237tenant_network_mask_bits = 24
Maru Newby81f07a02012-09-05 20:21:19 -0700238
239# If tenant networks are reachable, connectivity checks will be
240# performed directly against addresses on those networks.
241tenant_networks_reachable = false
242
243# Id of the public network that provides external connectivity.
Maru Newby22ec5d92012-12-19 02:57:04 +0000244public_network_id = {$PUBLIC_NETWORK_ID}
Maru Newby81f07a02012-09-05 20:21:19 -0700245
246# Id of a shared public router that provides external connectivity.
247# A shared public router would commonly be used where IP namespaces
248# were disabled. If namespaces are enabled, it would be preferable
249# for each tenant to have their own router.
Maru Newby22ec5d92012-12-19 02:57:04 +0000250public_router_id = {$PUBLIC_ROUTER_ID}
Maru Newby81f07a02012-09-05 20:21:19 -0700251
Dan Smithd6c1f882013-02-26 15:50:11 -0500252
Rohit Karajgidd47d7e2012-07-31 04:11:01 -0700253[volume]
Joe Gordon979da332012-11-27 11:46:59 -0800254# This section contains the configuration options used when executing tests
Rohit Karajgidd47d7e2012-07-31 04:11:01 -0700255# against the OpenStack Block Storage API service
256
257# The type of endpoint for a Cinder or Block Storage API service.
258# Unless you have a custom Keystone service catalog implementation, you
259# probably want to leave this value as "volume"
260catalog_type = volume
Arata Notsu8f440392013-09-13 16:14:20 +0900261# The name of a region for volume. If empty or commented-out, the value of
262# identity.region is used instead. If no such region is found in the service
263# catalog, the first found one is used.
264#region = RegionOne
Ryan Hsua67f4632013-08-29 16:03:06 -0700265# The disk format to use when copying a volume to image
266disk_format = raw
Rohit Karajgidd47d7e2012-07-31 04:11:01 -0700267# Number of seconds to wait while looping to check the status of a
268# volume that is being made available
269build_interval = 10
270# Number of seconds to time out on waiting for a volume
271# to be available or reach an expected status
272build_timeout = 300
Matthew Treinishd5c96022013-10-17 21:51:23 +0000273# If multi_backend is enabled there must be 2 volume_backend_names (
274# backend1_name and backend2_name) which have to be different)
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200275backend1_name = BACKEND_1
276backend2_name = BACKEND_2
Adam Gandelman827ad332013-06-24 17:04:09 -0700277# Protocol and vendor of volume backend to target when testing volume-types.
278# You should update to reflect those exported by configured backend driver.
279storage_protocol = iSCSI
280vendor_name = Open Source
dwalleck5d734432012-10-04 01:11:47 -0500281
Matthew Treinishd5c96022013-10-17 21:51:23 +0000282[volume-feature-enabled]
283#Runs Cinder multi-backend tests (requires 2 backends declared in cinder.conf)
284multi_backend = false
285
dwalleck5d734432012-10-04 01:11:47 -0500286[object-storage]
287# This section contains configuration options used when executing tests
288# against the OpenStack Object Storage API.
Attila Fazekas9492d352012-12-04 13:55:58 +0100289
290# You can configure the credentials in the compute section
dwalleck5d734432012-10-04 01:11:47 -0500291
292# The type of endpoint for an Object Storage API service. Unless you have a
293# custom Keystone service catalog implementation, you probably want to leave
294# this value as "object-store"
295catalog_type = object-store
Attila Fazekasa23f5002012-10-23 19:32:45 +0200296
Arata Notsu8f440392013-09-13 16:14:20 +0900297# The name of a region for object storage. If empty or commented-out, the
298# value of identity.region is used instead. If no such region is found in
299# the service catalog, the first found one is used.
300#region = RegionOne
301
nayna-patelb4989b32013-01-09 06:25:13 +0000302# Number of seconds to time on waiting for a container to container
303# synchronization complete
304container_sync_timeout = 120
305# Number of seconds to wait while looping to check the status of a
306# container to container synchronization
307container_sync_interval = 5
K Jonathan Harkerd6ba4b42012-12-18 13:50:47 -0800308
Matthew Treinish3fdb80c2013-08-15 11:13:19 -0400309# Set operator role for tests that require creating a container
310operator_role = Member
311
Joe H. Rahme836da3f2013-10-09 15:47:16 +0200312[object-storage-feature-enabled]
Matthew Treinishd5c96022013-10-17 21:51:23 +0000313# Set to True if the Account Quota middleware is enabled
314accounts_quotas = True
315# Set to True if the Container Quota middleware is enabled
316container_quotas = True
Joe H. Rahme836da3f2013-10-09 15:47:16 +0200317# Set to True if the Crossdomain middleware is enabled
318crossdomain_available = True
Matthew Treinishd5c96022013-10-17 21:51:23 +0000319
Attila Fazekasa23f5002012-10-23 19:32:45 +0200320[boto]
321# This section contains configuration options used when executing tests
322# with boto.
323
324# EC2 URL
325ec2_url = http://localhost:8773/services/Cloud
326# S3 URL
327s3_url = http://localhost:3333
328
329# Use keystone ec2-* command to get those values for your test user and tenant
330aws_access =
331aws_secret =
332
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200333# Image materials for S3 upload
Attila Fazekasa23f5002012-10-23 19:32:45 +0200334# ALL content of the specified directory will be uploaded to S3
Chris Yeoh76916042013-02-27 16:25:25 +1030335s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.1
Attila Fazekasa23f5002012-10-23 19:32:45 +0200336
337# The manifest.xml files, must be in the s3_materials_path directory
338# Subdirectories not allowed!
339# The filenames will be used as a Keys in the S3 Buckets
340
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200341# ARI Ramdisk manifest. Must be in the above s3_materials_path
Chris Yeoh76916042013-02-27 16:25:25 +1030342ari_manifest = cirros-0.3.1-x86_64-initrd.manifest.xml
Attila Fazekasa23f5002012-10-23 19:32:45 +0200343
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200344# AMI Machine Image manifest. Must be in the above s3_materials_path
Chris Yeoh76916042013-02-27 16:25:25 +1030345ami_manifest = cirros-0.3.1-x86_64-blank.img.manifest.xml
Attila Fazekasa23f5002012-10-23 19:32:45 +0200346
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200347# AKI Kernel Image manifest, Must be in the above s3_materials_path
Chris Yeoh76916042013-02-27 16:25:25 +1030348aki_manifest = cirros-0.3.1-x86_64-vmlinuz.manifest.xml
Attila Fazekasa23f5002012-10-23 19:32:45 +0200349
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200350# Instance type
Attila Fazekasa23f5002012-10-23 19:32:45 +0200351instance_type = m1.tiny
352
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200353# TCP/IP connection timeout
Attila Fazekasa23f5002012-10-23 19:32:45 +0200354http_socket_timeout = 5
355
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200356# Number of retries actions on connection or 5xx error
Attila Fazekasf7f2d932012-12-13 09:14:38 +0100357num_retries = 1
358
Attila Fazekasa23f5002012-10-23 19:32:45 +0200359# Status change wait timout
360build_timeout = 120
361
362# Status change wait interval
363build_interval = 1
Steve Bakerc60e4e32013-05-06 15:22:41 +1200364
365[orchestration]
Arata Notsu8f440392013-09-13 16:14:20 +0900366# The type of endpoint for an Orchestration API service. Unless you have a
367# custom Keystone service catalog implementation, you probably want to leave
368# this value as "orchestration"
369catalog_type = orchestration
370
371# The name of a region for orchestration. If empty or commented-out, the value
372# of identity.region is used instead. If no such region is found in the service
373# catalog, the first found one is used.
374#region = RegionOne
375
Steve Bakerc60e4e32013-05-06 15:22:41 +1200376# Status change wait interval
377build_interval = 1
378
379# Status change wait timout. This may vary across environments as some some
380# tests spawn full VMs, which could be slow if the test is already in a VM.
381build_timeout = 300
382
Steve Bakerc60e4e32013-05-06 15:22:41 +1200383# Instance type for tests. Needs to be big enough for a
384# full OS plus the test workload
Steve Baker9e86b832013-05-22 15:40:28 +1200385instance_type = m1.micro
Steve Bakerc60e4e32013-05-06 15:22:41 +1200386
387# Name of heat-cfntools enabled image to use when launching test instances
388# If not specified, tests that spawn instances will not run
389#image_ref = ubuntu-vm-heat-cfntools
390
391# Name of existing keypair to launch servers with. The default is not to specify
392# any key, which will generate a keypair for each test class
393#keypair_name = heat_key
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900394
Julie Pichond1017642013-07-24 16:37:23 +0100395[dashboard]
396# URL where to find the dashboard home page
397dashboard_url = 'http://localhost/'
398
399# URL where to submit the login form
400login_url = 'http://localhost/auth/login/'
401
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900402[scenario]
403# Directory containing image files
404img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
405
406# AMI image file name
407ami_img_file = cirros-0.3.1-x86_64-blank.img
408
409# ARI image file name
410ari_img_file = cirros-0.3.1-x86_64-initrd
411
412# AKI image file name
413aki_img_file = cirros-0.3.1-x86_64-vmlinuz
414
415# ssh username for the image file
416ssh_user = cirros
Attila Fazekas86950732013-06-08 09:33:08 +0200417
Joe Gordonb5e10cd2013-07-10 15:51:12 +0000418# specifies how many resources to request at once. Used for large operations
419# testing."
420large_ops_number = 0
421
Mikhail S Medvedev13168d02013-06-24 16:13:40 -0500422[cli]
Attila Fazekas86950732013-06-08 09:33:08 +0200423# Enable cli tests
Attila Fazekasd7bab662013-10-17 16:11:55 +0200424enabled = true
Attila Fazekas86950732013-06-08 09:33:08 +0200425# directory where python client binaries are located
Mikhail S Medvedev13168d02013-06-24 16:13:40 -0500426cli_dir = /usr/local/bin
Matt Riedemannab038c92013-08-06 06:56:48 -0700427# Number of seconds to wait on a CLI timeout
428timeout = 15
Matthew Treinish4c412922013-07-16 15:27:42 -0400429
430[service_available]
431# Whether or not cinder is expected to be available
Attila Fazekasd7bab662013-10-17 16:11:55 +0200432cinder = true
Matthew Treinishfaa340d2013-07-19 16:26:21 -0400433# Whether or not neutron is expected to be available
434neutron = false
Matthew Treinish853ae442013-07-19 16:36:07 -0400435# Whether or not glance is expected to be available
Attila Fazekasd7bab662013-10-17 16:11:55 +0200436glance = true
Matthew Treinish61e332b2013-07-19 16:42:31 -0400437# Whether or not swift is expected to be available
Attila Fazekasd7bab662013-10-17 16:11:55 +0200438swift = true
Matthew Treinish6b41e242013-07-19 16:49:28 -0400439# Whether or not nova is expected to be available
Attila Fazekasd7bab662013-10-17 16:11:55 +0200440nova = true
Matthew Treinisha9d43882013-07-19 16:54:52 -0400441# Whether or not Heat is expected to be available
442heat = false
Mehdi Abaakouk8581c0b2013-10-04 10:45:42 +0200443# Whether or not Ceilometer is expected to be available
444ceilometer = True
Julie Pichond1017642013-07-24 16:37:23 +0100445# Whether or not horizon is expected to be available
Attila Fazekasd7bab662013-10-17 16:11:55 +0200446horizon = true
Marc Koderer32221b8e2013-08-23 13:57:50 +0200447
448[stress]
449# Maximum number of instances to create during test
450max_instances = 32
451# Time (in seconds) between log file error checks
452log_check_interval = 60
453# The default number of threads created while stress test
Attila Fazekasd7bab662013-10-17 16:11:55 +0200454default_thread_number_per_action = 4
Attila Fazekasaeeeefd2013-08-06 17:01:56 +0200455
456[debug]
457# Enable diagnostic commands
Attila Fazekasd7bab662013-10-17 16:11:55 +0200458enable = true