blob: 64bd8c3678fa2a4b82886294189395dd9e0ffc1c [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
5use_stderr = False
6
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.
26disable_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/
K Jonathan Harkerd6ba4b42012-12-18 13:50:47 -080031# The identity region
32region = RegionOne
Daryl Walleck587385b2012-03-03 13:00:26 -060033
Attila Fazekascadcb1f2013-01-21 23:10:53 +010034# This should be the username of a user WITHOUT administrative privileges
35username = demo
36# The above non-administrative user's password
37password = secret
38# The above non-administrative user's tenant name
39tenant_name = demo
40
41# This should be the username of an alternate user WITHOUT
42# administrative privileges
43alt_username = alt_demo
44# The above non-administrative user's password
45alt_password = secret
46# The above non-administrative user's tenant name
47alt_tenant_name = alt_demo
48
49# This should be the username of a user WITH administrative privileges
50admin_username = admin
Maru Newby28c1dce2013-04-08 20:02:06 +000051# The above administrative user's password
Attila Fazekascadcb1f2013-01-21 23:10:53 +010052admin_password = secret
Maru Newby28c1dce2013-04-08 20:02:06 +000053# The above administrative user's tenant name
Attila Fazekascadcb1f2013-01-21 23:10:53 +010054admin_tenant_name = admin
55
Daryl Walleck587385b2012-03-03 13:00:26 -060056[compute]
Jay Pipes3f981df2012-03-27 18:59:44 -040057# This section contains configuration options used when executing tests
58# against the OpenStack Compute API.
59
Jay Pipesf38eaac2012-06-21 13:37:35 -040060# Allows test cases to create/destroy tenants and users. This option
61# enables isolated test cases and better parallel execution,
62# but also requires that OpenStack Identity API admin credentials
63# are known.
64allow_tenant_isolation = true
65
Dan Smithd6ff6b72012-08-23 10:29:41 -070066# Allows test cases to create/destroy tenants and users. This option
67# enables isolated test cases and better parallel execution,
68# but also requires that OpenStack Identity API admin credentials
69# are known.
70allow_tenant_reuse = true
71
Daryl Walleck587385b2012-03-03 13:00:26 -060072# Reference data for tests. The ref and ref_alt should be
73# distinct images/flavors.
Jay Pipes3f981df2012-03-27 18:59:44 -040074image_ref = {$IMAGE_ID}
75image_ref_alt = {$IMAGE_ID_ALT}
76flavor_ref = 1
77flavor_ref_alt = 2
78
Ryan Hsucb2e1252013-09-03 21:44:49 -070079# User name used to authenticate to an instance
Maru Newbyaf292e82013-05-20 21:32:28 +000080image_ssh_user = root
Ryan Hsucb2e1252013-09-03 21:44:49 -070081
82# Password used to authenticate to an instance
83image_ssh_password = password
84
85# User name used to authenticate to an instance using the alternate image
Maru Newbyaf292e82013-05-20 21:32:28 +000086image_alt_ssh_user = root
87
Ryan Hsucb2e1252013-09-03 21:44:49 -070088# Password used to authenticate to an instance using the alternate image
89image_alt_ssh_password = password
90
Jay Pipes3f981df2012-03-27 18:59:44 -040091# Number of seconds to wait while looping to check the status of an
Rohit Karajgidd47d7e2012-07-31 04:11:01 -070092# instance that is building.
Jay Pipes3f981df2012-03-27 18:59:44 -040093build_interval = 10
94
Rohit Karajgidd47d7e2012-07-31 04:11:01 -070095# Number of seconds to time out on waiting for an instance
Jay Pipes3f981df2012-03-27 18:59:44 -040096# to build or reach an expected status
97build_timeout = 600
98
Daryl Walleck6b9b2882012-04-08 21:43:39 -050099# Run additional tests that use SSH for instance validation?
100# This requires the instances be routable from the host
101# executing the tests
102run_ssh = false
103
Ryan Hsucb2e1252013-09-03 21:44:49 -0700104# Name of a user used to authenticate to an instance.
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100105ssh_user = cirros
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500106
Attila Fazekasb0661652013-05-08 13:01:36 +0200107# Visible fixed network name
108fixed_network_name = private
109
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500110# Network id used for SSH (public, private, etc)
Matt Riedemanna80778d2013-07-31 03:37:41 -0700111network_for_ssh = public
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500112
113# IP version of the address used for SSH
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100114ip_version_for_ssh = 4
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500115
Nachi Ueno6d580be2013-07-24 10:58:11 -0700116# Number of seconds to wait to ping to an instance
117ping_timeout = 60
118
Daryl Walleck6b9b2882012-04-08 21:43:39 -0500119# Number of seconds to wait to authenticate to an instance
120ssh_timeout = 300
121
Attila Fazekas0abbc952013-07-01 19:19:42 +0200122# Additinal wait time for clean state, when there is
123# no OS-EXT-STS extension availiable
124ready_wait = 0
125
Chris Yeoh76916042013-02-27 16:25:25 +1030126# Number of seconds to wait for output from ssh channel
127ssh_channel_timeout = 60
128
fujioka yuuichia11994e2013-07-09 11:19:51 +0900129# Dose the SSH uses Floating IP?
130use_floatingip_for_ssh = True
131
Jay Pipes3f981df2012-03-27 18:59:44 -0400132# The type of endpoint for a Compute API service. Unless you have a
133# custom Keystone service catalog implementation, you probably want to leave
134# this value as "compute"
135catalog_type = compute
136
137# Does the Compute API support creation of images?
138create_image_enabled = true
139
David Kranz30fe84a2012-03-20 16:25:47 -0400140# For resize to work with libvirt/kvm, one of the following must be true:
141# Single node: allow_resize_to_same_host=True must be set in nova.conf
142# Cluster: the 'nova' user must have scp access between cluster nodes
Jay Pipes3f981df2012-03-27 18:59:44 -0400143resize_available = true
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600144
David Kranzf97d5fd2012-07-30 13:46:45 -0400145# Does the compute API support changing the admin password?
146change_password_available=true
147
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100148# Run live migration tests (requires 2 hosts)
149live_migration_available = false
150
151# Use block live migration (Otherwise, non-block migration will be
152# performed, which requires XenServer pools in case of using XS)
153use_block_migration_for_live_migration = false
154
Bob Ballc078be92013-04-09 14:25:00 +0100155# Supports iSCSI block migration - depends on a XAPI supporting
156# relax-xsm-sr-check
157block_migrate_supports_cinder_iscsi = false
158
Attila Fazekas86950732013-06-08 09:33:08 +0200159# When set to false, disk config tests are forced to skip
160disk_config_enabled = true
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100161
Attila Fazekas86950732013-06-08 09:33:08 +0200162# When set to false, flavor extra data tests are forced to skip
163flavor_extra_enabled = true
Attila Fazekas3ca1fb32013-01-21 23:10:53 +0100164
Ryan Hsucb2e1252013-09-03 21:44:49 -0700165# Expected first device name when a volume is attached to an instance
166volume_device_name = vdb
167
Attila Fazekas3ca1fb32013-01-21 23:10:53 +0100168[whitebox]
169# Whitebox options for compute. Whitebox options enable the
170# whitebox test cases, which look at internal Nova database state,
171# SSH into VMs to check instance state, etc.
172
Jay Pipes051075a2012-04-28 17:39:37 -0400173# Should we run whitebox tests for Compute?
174whitebox_enabled = true
175
176# Path of nova source directory
177source_dir = /opt/stack/nova
178
179# Path of nova configuration file
180config_path = /etc/nova/nova.conf
181
182# Directory containing nova binaries such as nova-manage
183bin_dir = /usr/local/bin
184
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100185# Connection string to the database of Compute service
186db_uri = mysql://nova:secret@localhost/nova
187
Jay Pipes051075a2012-04-28 17:39:37 -0400188# Path to a private key file for SSH access to remote hosts
189path_to_private_key = /home/user/.ssh/id_rsa
190
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100191[compute-admin]
192# This should be the username of a user WITH administrative privileges
193# If not defined the admin user from the identity section will be used
194username =
195# The above administrative user's password
196password =
197# The above administrative user's tenant name
198tenant_name =
Armando Migliacciob8cc2202012-12-12 17:20:51 +0000199
Eoghan Glynn4b10c7c2012-03-01 13:13:35 -0500200[image]
Jay Pipes3f981df2012-03-27 18:59:44 -0400201# This section contains configuration options used when executing tests
202# against the OpenStack Images API
203
Jay Pipesad6feca2012-04-30 15:10:18 -0400204# The type of endpoint for an Image API service. Unless you have a
205# custom Keystone service catalog implementation, you probably want to leave
206# this value as "image"
207catalog_type = image
208
209# The version of the OpenStack Images API to use
210api_version = 1
211
Sean Dague83401992013-05-06 17:46:36 -0400212# HTTP image to use for glance http image testing
213http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
214
Unmesh Gurjar44986832012-05-08 19:57:10 +0530215[network]
216# This section contains configuration options used when executing tests
217# against the OpenStack Network API.
Rohit Karajgidd47d7e2012-07-31 04:11:01 -0700218
Mark McClainf2982e82013-07-06 17:48:03 -0400219# Version of the Neutron API
Unmesh Gurjar44986832012-05-08 19:57:10 +0530220api_version = v1.1
Mark McClainf2982e82013-07-06 17:48:03 -0400221# Catalog type of the Neutron Service
Unmesh Gurjar44986832012-05-08 19:57:10 +0530222catalog_type = network
Jay Pipesf38eaac2012-06-21 13:37:35 -0400223
Maru Newby81f07a02012-09-05 20:21:19 -0700224# A large private cidr block from which to allocate smaller blocks for
225# tenant networks.
226tenant_network_cidr = 10.100.0.0/16
227
228# The mask bits used to partition the tenant block.
Gavin Brebner516487b2013-03-14 13:43:21 +0000229tenant_network_mask_bits = 28
Maru Newby81f07a02012-09-05 20:21:19 -0700230
231# If tenant networks are reachable, connectivity checks will be
232# performed directly against addresses on those networks.
233tenant_networks_reachable = false
234
235# Id of the public network that provides external connectivity.
Maru Newby22ec5d92012-12-19 02:57:04 +0000236public_network_id = {$PUBLIC_NETWORK_ID}
Maru Newby81f07a02012-09-05 20:21:19 -0700237
238# Id of a shared public router that provides external connectivity.
239# A shared public router would commonly be used where IP namespaces
240# were disabled. If namespaces are enabled, it would be preferable
241# for each tenant to have their own router.
Maru Newby22ec5d92012-12-19 02:57:04 +0000242public_router_id = {$PUBLIC_ROUTER_ID}
Maru Newby81f07a02012-09-05 20:21:19 -0700243
Dan Smithd6c1f882013-02-26 15:50:11 -0500244
Rohit Karajgidd47d7e2012-07-31 04:11:01 -0700245[volume]
Joe Gordon979da332012-11-27 11:46:59 -0800246# This section contains the configuration options used when executing tests
Rohit Karajgidd47d7e2012-07-31 04:11:01 -0700247# against the OpenStack Block Storage API service
248
249# The type of endpoint for a Cinder or Block Storage API service.
250# Unless you have a custom Keystone service catalog implementation, you
251# probably want to leave this value as "volume"
252catalog_type = volume
253# Number of seconds to wait while looping to check the status of a
254# volume that is being made available
255build_interval = 10
256# Number of seconds to time out on waiting for a volume
257# to be available or reach an expected status
258build_timeout = 300
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200259# Runs Cinder multi-backend tests (requires 2 backends declared in cinder.conf)
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100260# They must have different volume_backend_name (backend1_name and backend2_name
261# have to be different)
262multi_backend_enabled = false
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200263backend1_name = BACKEND_1
264backend2_name = BACKEND_2
Adam Gandelman827ad332013-06-24 17:04:09 -0700265# Protocol and vendor of volume backend to target when testing volume-types.
266# You should update to reflect those exported by configured backend driver.
267storage_protocol = iSCSI
268vendor_name = Open Source
dwalleck5d734432012-10-04 01:11:47 -0500269
270[object-storage]
271# This section contains configuration options used when executing tests
272# against the OpenStack Object Storage API.
Attila Fazekas9492d352012-12-04 13:55:58 +0100273
274# You can configure the credentials in the compute section
dwalleck5d734432012-10-04 01:11:47 -0500275
276# The type of endpoint for an Object Storage API service. Unless you have a
277# custom Keystone service catalog implementation, you probably want to leave
278# this value as "object-store"
279catalog_type = object-store
Attila Fazekasa23f5002012-10-23 19:32:45 +0200280
nayna-patelb4989b32013-01-09 06:25:13 +0000281# Number of seconds to time on waiting for a container to container
282# synchronization complete
283container_sync_timeout = 120
284# Number of seconds to wait while looping to check the status of a
285# container to container synchronization
286container_sync_interval = 5
Joe H. Rahme2b312572013-07-31 17:53:23 +0200287# Set to True if the Account Quota middleware is enabled
288accounts_quotas_available = True
K Jonathan Harkerd6ba4b42012-12-18 13:50:47 -0800289
Matthew Treinish3fdb80c2013-08-15 11:13:19 -0400290# Set operator role for tests that require creating a container
291operator_role = Member
292
Attila Fazekasa23f5002012-10-23 19:32:45 +0200293[boto]
294# This section contains configuration options used when executing tests
295# with boto.
296
297# EC2 URL
298ec2_url = http://localhost:8773/services/Cloud
299# S3 URL
300s3_url = http://localhost:3333
301
302# Use keystone ec2-* command to get those values for your test user and tenant
303aws_access =
304aws_secret =
305
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200306# Image materials for S3 upload
Attila Fazekasa23f5002012-10-23 19:32:45 +0200307# ALL content of the specified directory will be uploaded to S3
Chris Yeoh76916042013-02-27 16:25:25 +1030308s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.1
Attila Fazekasa23f5002012-10-23 19:32:45 +0200309
310# The manifest.xml files, must be in the s3_materials_path directory
311# Subdirectories not allowed!
312# The filenames will be used as a Keys in the S3 Buckets
313
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200314# ARI Ramdisk manifest. Must be in the above s3_materials_path
Chris Yeoh76916042013-02-27 16:25:25 +1030315ari_manifest = cirros-0.3.1-x86_64-initrd.manifest.xml
Attila Fazekasa23f5002012-10-23 19:32:45 +0200316
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200317# AMI Machine Image manifest. Must be in the above s3_materials_path
Chris Yeoh76916042013-02-27 16:25:25 +1030318ami_manifest = cirros-0.3.1-x86_64-blank.img.manifest.xml
Attila Fazekasa23f5002012-10-23 19:32:45 +0200319
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200320# AKI Kernel Image manifest, Must be in the above s3_materials_path
Chris Yeoh76916042013-02-27 16:25:25 +1030321aki_manifest = cirros-0.3.1-x86_64-vmlinuz.manifest.xml
Attila Fazekasa23f5002012-10-23 19:32:45 +0200322
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200323# Instance type
Attila Fazekasa23f5002012-10-23 19:32:45 +0200324instance_type = m1.tiny
325
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200326# TCP/IP connection timeout
Attila Fazekasa23f5002012-10-23 19:32:45 +0200327http_socket_timeout = 5
328
Attila Fazekasc3a095b2013-08-17 09:15:44 +0200329# Number of retries actions on connection or 5xx error
Attila Fazekasf7f2d932012-12-13 09:14:38 +0100330num_retries = 1
331
Attila Fazekasa23f5002012-10-23 19:32:45 +0200332# Status change wait timout
333build_timeout = 120
334
335# Status change wait interval
336build_interval = 1
Steve Bakerc60e4e32013-05-06 15:22:41 +1200337
338[orchestration]
339# Status change wait interval
340build_interval = 1
341
342# Status change wait timout. This may vary across environments as some some
343# tests spawn full VMs, which could be slow if the test is already in a VM.
344build_timeout = 300
345
Steve Bakerc60e4e32013-05-06 15:22:41 +1200346# Instance type for tests. Needs to be big enough for a
347# full OS plus the test workload
Steve Baker9e86b832013-05-22 15:40:28 +1200348instance_type = m1.micro
Steve Bakerc60e4e32013-05-06 15:22:41 +1200349
350# Name of heat-cfntools enabled image to use when launching test instances
351# If not specified, tests that spawn instances will not run
352#image_ref = ubuntu-vm-heat-cfntools
353
354# Name of existing keypair to launch servers with. The default is not to specify
355# any key, which will generate a keypair for each test class
356#keypair_name = heat_key
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900357
Julie Pichond1017642013-07-24 16:37:23 +0100358[dashboard]
359# URL where to find the dashboard home page
360dashboard_url = 'http://localhost/'
361
362# URL where to submit the login form
363login_url = 'http://localhost/auth/login/'
364
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900365[scenario]
366# Directory containing image files
367img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
368
369# AMI image file name
370ami_img_file = cirros-0.3.1-x86_64-blank.img
371
372# ARI image file name
373ari_img_file = cirros-0.3.1-x86_64-initrd
374
375# AKI image file name
376aki_img_file = cirros-0.3.1-x86_64-vmlinuz
377
378# ssh username for the image file
379ssh_user = cirros
Attila Fazekas86950732013-06-08 09:33:08 +0200380
Joe Gordonb5e10cd2013-07-10 15:51:12 +0000381# specifies how many resources to request at once. Used for large operations
382# testing."
383large_ops_number = 0
384
Mikhail S Medvedev13168d02013-06-24 16:13:40 -0500385[cli]
Attila Fazekas86950732013-06-08 09:33:08 +0200386# Enable cli tests
387enabled = True
388# directory where python client binaries are located
Mikhail S Medvedev13168d02013-06-24 16:13:40 -0500389cli_dir = /usr/local/bin
Matt Riedemannab038c92013-08-06 06:56:48 -0700390# Number of seconds to wait on a CLI timeout
391timeout = 15
Matthew Treinish4c412922013-07-16 15:27:42 -0400392
393[service_available]
394# Whether or not cinder is expected to be available
395cinder = True
Matthew Treinishfaa340d2013-07-19 16:26:21 -0400396# Whether or not neutron is expected to be available
397neutron = false
Matthew Treinish853ae442013-07-19 16:36:07 -0400398# Whether or not glance is expected to be available
399glance = True
Matthew Treinish61e332b2013-07-19 16:42:31 -0400400# Whether or not swift is expected to be available
401swift = True
Matthew Treinish6b41e242013-07-19 16:49:28 -0400402# Whether or not nova is expected to be available
403nova = True
Matthew Treinisha9d43882013-07-19 16:54:52 -0400404# Whether or not Heat is expected to be available
405heat = false
Julie Pichond1017642013-07-24 16:37:23 +0100406# Whether or not horizon is expected to be available
407horizon = True
Marc Koderer32221b8e2013-08-23 13:57:50 +0200408
409[stress]
410# Maximum number of instances to create during test
411max_instances = 32
412# Time (in seconds) between log file error checks
413log_check_interval = 60
414# The default number of threads created while stress test
Jenkinse67416c2013-08-28 23:09:23 +0000415default_thread_number_per_action=4