blob: f5e0cf86760044a455f5dc4f29bab952ce778a4a [file] [log] [blame]
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -04001[DEFAULT]
Attila Fazekasbfd96e12013-07-31 17:19:10 +02002
Matthew Treinish3d468112013-10-24 21:49:14 +00003#
Doug Hellmann583ce2c2015-03-11 14:55:46 +00004# From oslo.log
Matthew Treinish3d468112013-10-24 21:49:14 +00005#
6
Jon Grimm270bd7f2014-08-05 18:11:29 +00007# Print debugging output (set logging level to DEBUG instead of
8# default WARNING level). (boolean value)
9#debug = false
Matthew Treinish3d468112013-10-24 21:49:14 +000010
Jon Grimm270bd7f2014-08-05 18:11:29 +000011# Print more verbose output (set logging level to INFO instead of
12# default WARNING level). (boolean value)
13#verbose = false
Matthew Treinish3d468112013-10-24 21:49:14 +000014
Jon Grimm270bd7f2014-08-05 18:11:29 +000015# The name of a logging configuration file. This file is appended to
16# any existing logging configuration files. For details about logging
17# configuration files, see the Python logging module documentation.
Matthew Treinish3d468112013-10-24 21:49:14 +000018# (string value)
Sean Daguefc691e32014-01-03 08:51:54 -050019# Deprecated group/name - [DEFAULT]/log_config
Jon Grimm270bd7f2014-08-05 18:11:29 +000020#log_config_append = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +000021
Jon Grimm270bd7f2014-08-05 18:11:29 +000022# DEPRECATED. A logging.Formatter log message format string which may
23# use any of the available logging.LogRecord attributes. This option
24# is deprecated. Please use logging_context_format_string and
25# logging_default_format_string instead. (string value)
26#log_format = <None>
Sean Dague2bbdf422014-07-11 07:58:33 -040027
Matthew Treinishc603d162015-01-05 20:03:40 -050028# Format string for %%(asctime)s in log records. Default: %(default)s
29# . (string value)
30#log_date_format = %Y-%m-%d %H:%M:%S
31
32# (Optional) Name of log file to output to. If no default is set,
33# logging will go to stdout. (string value)
34# Deprecated group/name - [DEFAULT]/logfile
35#log_file = <None>
36
37# (Optional) The base directory used for relative --log-file paths.
38# (string value)
39# Deprecated group/name - [DEFAULT]/logdir
40#log_dir = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +000041
42# Use syslog for logging. Existing syslog format is DEPRECATED during
43# I, and will change in J to honor RFC5424. (boolean value)
44#use_syslog = false
45
46# (Optional) Enables or disables syslog rfc5424 format for logging. If
47# enabled, prefixes the MSG part of the syslog message with APP-NAME
48# (RFC5424). The format without the APP-NAME is deprecated in I, and
49# will be removed in J. (boolean value)
50#use_syslog_rfc_format = false
51
Matthew Treinishc603d162015-01-05 20:03:40 -050052# Syslog facility to receive log lines. (string value)
53#syslog_log_facility = LOG_USER
54
Jon Grimm270bd7f2014-08-05 18:11:29 +000055# Log output to standard error. (boolean value)
56#use_stderr = true
57
Matthew Treinishc603d162015-01-05 20:03:40 -050058# Format string to use for log messages with context. (string value)
59#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
60
61# Format string to use for log messages without context. (string
62# value)
63#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
64
65# Data to append to log format when level is DEBUG. (string value)
66#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
67
68# Prefix each line of exception output with this format. (string
69# value)
70#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s
71
Jon Grimm270bd7f2014-08-05 18:11:29 +000072# List of logger=LEVEL pairs. (list value)
Doug Hellmann583ce2c2015-03-11 14:55:46 +000073#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN
Jon Grimm270bd7f2014-08-05 18:11:29 +000074
Matthew Treinishc603d162015-01-05 20:03:40 -050075# Enables or disables publication of error events. (boolean value)
76#publish_errors = false
77
Jon Grimm270bd7f2014-08-05 18:11:29 +000078# Enables or disables fatal status of deprecations. (boolean value)
79#fatal_deprecations = false
80
81# The format for an instance that is passed with the log message.
82# (string value)
83#instance_format = "[instance: %(uuid)s] "
84
85# The format for an instance UUID that is passed with the log message.
86# (string value)
87#instance_uuid_format = "[instance: %(uuid)s] "
88
Marc Kodererb714de52013-08-08 09:21:46 +020089
Matthew Treinishc791ac42014-07-16 09:15:23 -040090[auth]
91
92#
Jon Grimm270bd7f2014-08-05 18:11:29 +000093# From tempest.config
Matthew Treinishc791ac42014-07-16 09:15:23 -040094#
95
Matthew Treinishc603d162015-01-05 20:03:40 -050096# Path to the yaml file that contains the list of credentials to use
97# for running tests (string value)
98#test_accounts_file = etc/accounts.yaml
99
Jon Grimm270bd7f2014-08-05 18:11:29 +0000100# Allows test cases to create/destroy tenants and users. This option
101# requires that OpenStack Identity API admin credentials are known. If
102# false, isolated test cases and parallel execution, can still be
103# achieved configuring a list of test accounts (boolean value)
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100104# Deprecated group/name - [compute]/allow_tenant_isolation
105# Deprecated group/name - [orchestration]/allow_tenant_isolation
Attila Fazekas5dda1582015-02-18 17:16:02 +0100106#allow_tenant_isolation = true
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100107
108# If set to True it enables the Accounts provider, which locks
Jon Grimm270bd7f2014-08-05 18:11:29 +0000109# credentials to allow for parallel execution with pre-provisioned
110# accounts. It can only be used to run tests that ensure credentials
111# cleanup happens. It requires at least `2 * CONC` distinct accounts
112# configured in `test_accounts_file`, with CONC == the number of
113# concurrent test processes. (boolean value)
114#locking_credentials_provider = false
115
Matthew Treinish167b2be2015-01-15 17:20:27 -0500116# Roles to assign to all users created by tempest (list value)
117#tempest_roles =
118
Andrea Frittolic3280152015-02-26 12:42:34 +0000119# Only applicable when identity.auth_version is v3.Domain within which
120# isolated credentials are provisioned.The default "None" means that
121# the domain from theadmin user is used instead. (string value)
122#tenant_isolation_domain_name = <None>
123
Matthew Treinishc791ac42014-07-16 09:15:23 -0400124
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300125[baremetal]
126
127#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000128# From tempest.config
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300129#
130
Matthew Treinishc603d162015-01-05 20:03:40 -0500131# Catalog type of the baremetal provisioning service (string value)
132#catalog_type = baremetal
133
134# Whether the Ironic nova-compute driver is enabled (boolean value)
135#driver_enabled = false
136
137# Driver name which Ironic uses (string value)
138#driver = fake
139
140# The endpoint type to use for the baremetal provisioning service
141# (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400142# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500143#endpoint_type = publicURL
144
Jon Grimm270bd7f2014-08-05 18:11:29 +0000145# Timeout for Ironic node to completely provision (integer value)
146#active_timeout = 300
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300147
Jon Grimm270bd7f2014-08-05 18:11:29 +0000148# Timeout for association of Nova instance and Ironic node (integer
Adam Gandelman4a48a602014-03-20 18:23:18 -0700149# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000150#association_timeout = 30
151
Adam Gandelman4a48a602014-03-20 18:23:18 -0700152# Timeout for Ironic power transitions. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000153#power_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700154
155# Timeout for unprovisioning an Ironic node. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000156#unprovision_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700157
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300158
Sean Daguefc691e32014-01-03 08:51:54 -0500159[boto]
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400160
161#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000162# From tempest.config
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400163#
164
Matthew Treinishc603d162015-01-05 20:03:40 -0500165# EC2 URL (string value)
166#ec2_url = http://localhost:8773/services/Cloud
Sean Daguefc691e32014-01-03 08:51:54 -0500167
Matthew Treinishc603d162015-01-05 20:03:40 -0500168# S3 URL (string value)
169#s3_url = http://localhost:8080
Sean Daguefc691e32014-01-03 08:51:54 -0500170
Jon Grimm270bd7f2014-08-05 18:11:29 +0000171# AWS Secret Key (string value)
172#aws_secret = <None>
Sean Daguefc691e32014-01-03 08:51:54 -0500173
Matthew Treinishc603d162015-01-05 20:03:40 -0500174# AWS Access Key (string value)
175#aws_access = <None>
176
Jon Grimm270bd7f2014-08-05 18:11:29 +0000177# AWS Zone for EC2 tests (string value)
178#aws_zone = nova
Sean Daguefc691e32014-01-03 08:51:54 -0500179
Jon Grimm270bd7f2014-08-05 18:11:29 +0000180# S3 Materials Path (string value)
181#s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0
182
Matthew Treinishc603d162015-01-05 20:03:40 -0500183# ARI Ramdisk Image manifest (string value)
184#ari_manifest = cirros-0.3.0-x86_64-initrd.manifest.xml
185
186# AMI Machine Image manifest (string value)
187#ami_manifest = cirros-0.3.0-x86_64-blank.img.manifest.xml
188
189# AKI Kernel Image manifest (string value)
190#aki_manifest = cirros-0.3.0-x86_64-vmlinuz.manifest.xml
191
192# Instance type (string value)
193#instance_type = m1.tiny
194
195# boto Http socket timeout (integer value)
196#http_socket_timeout = 3
197
198# boto num_retries on error (integer value)
199#num_retries = 1
200
201# Status Change Timeout (integer value)
202#build_timeout = 60
203
204# Status Change Test Interval (integer value)
205#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -0500206
207
208[cli]
209
210#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000211# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500212#
213
Jon Grimm270bd7f2014-08-05 18:11:29 +0000214# enable cli tests (boolean value)
215#enabled = true
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400216
Matthew Treinishc603d162015-01-05 20:03:40 -0500217# directory where python client binaries are located (string value)
218#cli_dir = /usr/local/bin
219
Sean Dague44b24682014-02-20 19:08:24 -0500220# Whether the tempest run location has access to the *-manage
Jon Grimm270bd7f2014-08-05 18:11:29 +0000221# commands. In a pure blackbox environment it will not. (boolean
222# value)
223#has_manage = true
Sean Dague44b24682014-02-20 19:08:24 -0500224
Sean Daguefc691e32014-01-03 08:51:54 -0500225# Number of seconds to wait on a CLI timeout (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000226#timeout = 15
Arata Notsu8f440392013-09-13 16:14:20 +0900227
Sean Dague83401992013-05-06 17:46:36 -0400228
Matthew Treinish3d468112013-10-24 21:49:14 +0000229[compute]
230
231#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000232# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000233#
234
Matthew Treinishafcb6b42014-05-27 13:50:02 -0400235# Valid primary image reference to be used in tests. This is a
236# required option (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000237#image_ref = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000238
Jon Grimm270bd7f2014-08-05 18:11:29 +0000239# Valid secondary image reference to be used in tests. This is a
240# required option, but if only one image is available duplicate the
241# value of image_ref above (string value)
242#image_ref_alt = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000243
Matthew Treinishc603d162015-01-05 20:03:40 -0500244# Valid primary flavor to use in tests. (string value)
245#flavor_ref = 1
246
247# Valid secondary flavor to be used in tests. (string value)
248#flavor_ref_alt = 2
Matthew Treinish3d468112013-10-24 21:49:14 +0000249
Jon Grimm270bd7f2014-08-05 18:11:29 +0000250# User name used to authenticate to an instance. (string value)
251#image_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000252
Matthew Treinishc603d162015-01-05 20:03:40 -0500253# Password used to authenticate to an instance. (string value)
254#image_ssh_password = password
Matthew Treinish3d468112013-10-24 21:49:14 +0000255
Matthew Treinishc603d162015-01-05 20:03:40 -0500256# User name used to authenticate to an instance using the alternate
257# image. (string value)
258#image_alt_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000259
Matthew Treinishc603d162015-01-05 20:03:40 -0500260# Password used to authenticate to an instance using the alternate
261# image. (string value)
262#image_alt_ssh_password = password
Jon Grimm270bd7f2014-08-05 18:11:29 +0000263
Matthew Treinishc603d162015-01-05 20:03:40 -0500264# Time in seconds between build status checks. (integer value)
265#build_interval = 1
Jon Grimm270bd7f2014-08-05 18:11:29 +0000266
Matthew Treinishc603d162015-01-05 20:03:40 -0500267# Timeout in seconds to wait for an instance to build. Other services
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200268# that do not define build_timeout will inherit this value. (integer
269# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500270#build_timeout = 300
Jon Grimm270bd7f2014-08-05 18:11:29 +0000271
272# Should the tests ssh to instances? (boolean value)
273#run_ssh = false
274
Jon Grimm270bd7f2014-08-05 18:11:29 +0000275# Auth method used for authenticate to the instance. Valid choices
276# are: keypair, configured, adminpass. keypair: start the servers with
277# an ssh keypair. configured: use the configured user and password.
278# adminpass: use the injected adminPass. disabled: avoid using ssh
279# when it is an option. (string value)
280#ssh_auth_method = keypair
281
Jon Grimm270bd7f2014-08-05 18:11:29 +0000282# How to connect to the instance? fixed: using the first ip belongs
283# the fixed network floating: creating and using a floating ip (string
JordanP5d29b2c2013-12-18 13:56:03 +0000284# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000285#ssh_connect_method = fixed
JordanP5d29b2c2013-12-18 13:56:03 +0000286
Matthew Treinishc603d162015-01-05 20:03:40 -0500287# User name used to authenticate to an instance. (string value)
288#ssh_user = root
289
290# Timeout in seconds to wait for ping to succeed. (integer value)
291#ping_timeout = 120
292
Jon Grimm270bd7f2014-08-05 18:11:29 +0000293# Timeout in seconds to wait for authentication to succeed. (integer
294# value)
295#ssh_timeout = 300
Matthew Treinish3d468112013-10-24 21:49:14 +0000296
Matthew Treinishc603d162015-01-05 20:03:40 -0500297# Additional wait time for clean state, when there is no OS-EXT-STS
298# extension available (integer value)
299#ready_wait = 0
300
301# Timeout in seconds to wait for output from ssh channel. (integer
302# value)
303#ssh_channel_timeout = 60
304
Matthew Treinish03feae02015-03-27 10:25:45 -0400305# Name of the fixed network that is visible to all test tenants. If
306# multiple networks are available for a tenant this is the network
307# which will be used for creating servers if tempest does not create a
308# network or a network is not specified elsewhere (string value)
309#fixed_network_name = <None>
Matthew Treinishc603d162015-01-05 20:03:40 -0500310
311# Network used for SSH connections. Ignored if
312# use_floatingip_for_ssh=true or run_ssh=false. (string value)
313#network_for_ssh = public
314
315# IP version used for SSH connections. (integer value)
316#ip_version_for_ssh = 4
Jon Grimm270bd7f2014-08-05 18:11:29 +0000317
318# Does SSH use Floating IPs? (boolean value)
319#use_floatingip_for_ssh = true
320
Matthew Treinishc603d162015-01-05 20:03:40 -0500321# Catalog type of the Compute service. (string value)
322#catalog_type = compute
323
324# The compute region name to use. If empty, the value of
325# identity.region is used instead. If no such region is found in the
326# service catalog, the first found one is used. (string value)
327#region =
328
329# The endpoint type to use for the compute service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400330# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500331#endpoint_type = publicURL
332
333# Path to a private key file for SSH access to remote hosts (string
334# value)
335#path_to_private_key = <None>
336
Jon Grimm270bd7f2014-08-05 18:11:29 +0000337# Expected device name when a volume is attached to an instance
Matthew Treinish3d468112013-10-24 21:49:14 +0000338# (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000339#volume_device_name = vdb
Sean Dague82190852014-05-24 07:42:59 -0400340
Matthew Treinishc603d162015-01-05 20:03:40 -0500341# Time in seconds before a shelved instance is eligible for removing
342# from a host. -1 never offload, 0 offload when shelved. This time
343# should be the same as the time of nova.conf, and some tests will run
344# for as long as the time. (integer value)
345#shelved_offload_time = 0
346
347# Unallocated floating IP range, which will be used to test the
348# floating IP bulk feature for CRUD operation. This block must not
349# overlap an existing floating IP pool. (string value)
350#floating_ip_range = 10.0.0.0/29
351
Sean Daguefc691e32014-01-03 08:51:54 -0500352
Sean Daguefc691e32014-01-03 08:51:54 -0500353[compute-feature-enabled]
Matthew Treinish3d468112013-10-24 21:49:14 +0000354
355#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000356# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000357#
358
Matthew Treinishc603d162015-01-05 20:03:40 -0500359# If false, skip disk config tests (boolean value)
360#disk_config = true
361
Jon Grimm270bd7f2014-08-05 18:11:29 +0000362# A list of enabled compute extensions with a special entry all which
363# indicates every extension is enabled. Each extension should be
364# specified with alias name. Empty list indicates all extensions are
365# disabled (list value)
366#api_extensions = all
Matthew Treinish3d468112013-10-24 21:49:14 +0000367
Jon Grimm270bd7f2014-08-05 18:11:29 +0000368# Does the test environment support changing the admin password?
369# (boolean value)
370#change_password = false
371
372# Does the test environment support obtaining instance serial console
373# output? (boolean value)
374#console_output = true
Matthew Treinish20866a22014-06-12 14:58:36 -0400375
Matthew Treinishc603d162015-01-05 20:03:40 -0500376# Does the test environment support resizing? (boolean value)
377#resize = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000378
Matthew Treinishc603d162015-01-05 20:03:40 -0500379# Does the test environment support pausing? (boolean value)
380#pause = true
Ghanshyam9c2e50d2014-07-22 21:32:05 +0900381
Matthew Treinishc603d162015-01-05 20:03:40 -0500382# Does the test environment support shelving/unshelving? (boolean
383# value)
384#shelve = true
385
386# Does the test environment support suspend/resume? (boolean value)
387#suspend = true
Adam Gandelman7186f7a2014-07-23 09:28:56 -0400388
Jon Grimm270bd7f2014-08-05 18:11:29 +0000389# Does the test environment support live migration available? (boolean
390# value)
Joe Gordon31a139a2014-11-17 16:39:04 -0800391#live_migration = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000392
Matthew Treinishc603d162015-01-05 20:03:40 -0500393# Does the test environment use block devices for live migration
394# (boolean value)
395#block_migration_for_live_migration = false
396
397# Does the test environment block migration support cinder iSCSI
398# volumes (boolean value)
399#block_migrate_cinder_iscsi = false
400
401# Enable VNC console. This configuration value should be same as
402# [nova.vnc]->vnc_enabled in nova.conf (boolean value)
403#vnc_console = false
404
405# Enable Spice console. This configuration value should be same as
406# [nova.spice]->enabled in nova.conf (boolean value)
407#spice_console = false
Jon Grimm270bd7f2014-08-05 18:11:29 +0000408
409# Enable RDP console. This configuration value should be same as
410# [nova.rdp]->enabled in nova.conf (boolean value)
411#rdp_console = false
412
413# Does the test environment support instance rescue mode? (boolean
414# value)
415#rescue = true
416
Matthew Treinishc603d162015-01-05 20:03:40 -0500417# Enables returning of the instance password by the relevant server
418# API calls such as create, rebuild or rescue. (boolean value)
419#enable_instance_password = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000420
Matthew Treinishc603d162015-01-05 20:03:40 -0500421# Does the test environment support dynamic network interface
422# attachment? (boolean value)
423#interface_attach = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000424
425# Does the test environment support creating snapshot images of
426# running instances? (boolean value)
427#snapshot = true
428
Matthew Treinishdfd7ac02015-02-09 17:47:31 -0500429# Does the test environment have the ec2 api running? (boolean value)
430#ec2_api = true
431
Matt Riedemann17940732015-03-13 14:18:19 +0000432# Does Nova preserve preexisting ports from Neutron when deleting an
433# instance? This should be set to True if testing Kilo+ Nova. (boolean
434# value)
435#preserve_ports = false
436
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100437
Julie Pichond1017642013-07-24 16:37:23 +0100438[dashboard]
Julie Pichond1017642013-07-24 16:37:23 +0100439
Matthew Treinish3d468112013-10-24 21:49:14 +0000440#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000441# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000442#
Julie Pichond1017642013-07-24 16:37:23 +0100443
Matthew Treinish3d468112013-10-24 21:49:14 +0000444# Where the dashboard can be found (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000445#dashboard_url = http://localhost/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900446
Matthew Treinish3d468112013-10-24 21:49:14 +0000447# Login page for the dashboard (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000448#login_url = http://localhost/auth/login/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900449
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900450
Sean Daguefc691e32014-01-03 08:51:54 -0500451[data_processing]
452
453#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000454# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500455#
456
457# Catalog type of the data processing service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000458#catalog_type = data_processing
Sean Daguefc691e32014-01-03 08:51:54 -0500459
Jon Grimm270bd7f2014-08-05 18:11:29 +0000460# The endpoint type to use for the data processing service. (string
461# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400462# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000463#endpoint_type = publicURL
JordanPfc62c902014-02-26 14:47:28 +0000464
Sean Daguefc691e32014-01-03 08:51:54 -0500465
Luigi Toscano14d172d2015-01-23 16:37:47 +0100466[data_processing-feature-enabled]
467
468#
469# From tempest.config
470#
471
472# List of enabled data processing plugins (list value)
473#plugins = vanilla,hdp
474
475
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800476[database]
477
478#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000479# From tempest.config
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800480#
481
482# Catalog type of the Database service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000483#catalog_type = database
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800484
Jon Grimm270bd7f2014-08-05 18:11:29 +0000485# Valid primary flavor to use in database tests. (string value)
486#db_flavor_ref = 1
Peter Stachowski320f9c72014-04-21 16:13:23 -0400487
Matthew Treinishc603d162015-01-05 20:03:40 -0500488# Current database version to use in database tests. (string value)
489#db_current_version = v1.0
490
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800491
Sean Daguefc691e32014-01-03 08:51:54 -0500492[debug]
493
494#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000495# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500496#
497
Jon Grimm270bd7f2014-08-05 18:11:29 +0000498# A regex to determine which requests should be traced. This is a
499# regex to match the caller for rest client requests to be able to
500# selectively trace calls out of specific classes and methods. It
501# largely exists for test development, and is not expected to be used
502# in a real deploy of tempest. This will be matched against the
503# discovered ClassName:method in the test environment. Expected
504# values for this field are: * ClassName:test_method_name - traces
505# one test_method * ClassName:setUp(Class) - traces specific setup
506# functions * ClassName:tearDown(Class) - traces specific teardown
507# functions * ClassName:_run_cleanups - traces the cleanup functions
508# If nothing is specified, this feature is not enabled. To trace
509# everything specify .* as the regex. (string value)
510#trace_requests =
Sean Daguec522c092014-03-24 10:43:22 -0400511
Sean Daguefc691e32014-01-03 08:51:54 -0500512
513[identity]
514
515#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000516# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500517#
518
Jon Grimm270bd7f2014-08-05 18:11:29 +0000519# Catalog type of the Identity service. (string value)
520#catalog_type = identity
521
522# Set to True if using self-signed SSL certificates. (boolean value)
523#disable_ssl_certificate_validation = false
524
Matthew Treinishc603d162015-01-05 20:03:40 -0500525# Specify a CA bundle file to use in verifying a TLS (https) server
526# certificate. (string value)
527#ca_certificates_file = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +0000528
529# Full URI of the OpenStack Identity API (Keystone), v2 (string value)
530#uri = <None>
531
532# Full URI of the OpenStack Identity API (Keystone), v3 (string value)
533#uri_v3 = <None>
534
Matthew Treinishc603d162015-01-05 20:03:40 -0500535# Identity API version to be used for authentication for API tests.
536# (string value)
537#auth_version = v2
538
539# The identity region name to use. Also used as the other services'
540# region name unless they are set explicitly. If no such region is
541# found in the service catalog, the first found one is used. (string
542# value)
543#region = RegionOne
544
545# The endpoint type to use for the identity service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400546# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500547#endpoint_type = publicURL
548
Jon Grimm270bd7f2014-08-05 18:11:29 +0000549# Username to use for Nova API requests. (string value)
550#username = <None>
Andrea Frittolib1b04bb2014-04-06 11:57:07 +0100551
Matthew Treinishc603d162015-01-05 20:03:40 -0500552# Tenant name to use for Nova API requests. (string value)
553#tenant_name = <None>
554
555# Role required to administrate keystone. (string value)
556#admin_role = admin
557
558# API key to use when authenticating. (string value)
559#password = <None>
560
561# Domain name for authentication (Keystone V3).The same domain applies
562# to user and project (string value)
563#domain_name = <None>
564
565# Username of alternate user to use for Nova API requests. (string
566# value)
567#alt_username = <None>
568
569# Alternate user's Tenant name to use for Nova API requests. (string
570# value)
571#alt_tenant_name = <None>
572
573# API key to use when authenticating as alternate user. (string value)
574#alt_password = <None>
575
576# Alternate domain name for authentication (Keystone V3).The same
577# domain applies to user and project (string value)
578#alt_domain_name = <None>
579
580# Administrative Username to use for Keystone API requests. (string
581# value)
582#admin_username = <None>
583
584# Administrative Tenant name to use for Keystone API requests. (string
585# value)
586#admin_tenant_name = <None>
587
588# API key to use when authenticating as admin. (string value)
589#admin_password = <None>
590
591# Admin domain name for authentication (Keystone V3).The same domain
592# applies to user and project (string value)
593#admin_domain_name = <None>
594
Sean Daguefc691e32014-01-03 08:51:54 -0500595
Matthew Treinishd5021a72014-01-09 18:42:51 +0000596[identity-feature-enabled]
597
598#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000599# From tempest.config
Matthew Treinishd5021a72014-01-09 18:42:51 +0000600#
601
Matthew Treinishc603d162015-01-05 20:03:40 -0500602# Does the identity service have delegation and impersonation enabled
603# (boolean value)
604#trust = true
605
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000606# Is the v2 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000607#api_v2 = true
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000608
609# Is the v3 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000610#api_v3 = true
611
Matthew Treinishd5021a72014-01-09 18:42:51 +0000612
Sean Daguefc691e32014-01-03 08:51:54 -0500613[image]
614
615#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000616# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500617#
618
619# Catalog type of the Image service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000620#catalog_type = image
Sean Daguefc691e32014-01-03 08:51:54 -0500621
Matthew Treinishc603d162015-01-05 20:03:40 -0500622# The image region name to use. If empty, the value of identity.region
623# is used instead. If no such region is found in the service catalog,
624# the first found one is used. (string value)
625#region =
626
Jon Grimm270bd7f2014-08-05 18:11:29 +0000627# The endpoint type to use for the image service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400628# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000629#endpoint_type = publicURL
JordanP5d29b2c2013-12-18 13:56:03 +0000630
Sean Daguefc691e32014-01-03 08:51:54 -0500631# http accessible image (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000632#http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
633
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200634# Timeout in seconds to wait for an image to become available.
635# (integer value)
636#build_timeout = 300
637
638# Time in seconds between image operation status checks. (integer
639# value)
640#build_interval = 1
641
Sean Daguefc691e32014-01-03 08:51:54 -0500642
643[image-feature-enabled]
644
645#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000646# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500647#
648
Jon Grimm270bd7f2014-08-05 18:11:29 +0000649# Is the v2 image API enabled (boolean value)
650#api_v2 = true
Sean Daguefc691e32014-01-03 08:51:54 -0500651
Matthew Treinishc603d162015-01-05 20:03:40 -0500652# Is the v1 image API enabled (boolean value)
653#api_v1 = true
654
Sean Daguefc691e32014-01-03 08:51:54 -0500655
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000656[input-scenario]
657
658#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000659# From tempest.config
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000660#
661
Jon Grimm270bd7f2014-08-05 18:11:29 +0000662# Matching images become parameters for scenario tests (string value)
663#image_regex = ^cirros-0.3.1-x86_64-uec$
664
Matthew Treinishc603d162015-01-05 20:03:40 -0500665# Matching flavors become parameters for scenario tests (string value)
666#flavor_regex = ^m1.nano$
667
Jon Grimm270bd7f2014-08-05 18:11:29 +0000668# SSH verification in tests is skippedfor matching images (string
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000669# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000670#non_ssh_image_regex = ^.*[Ww]in.*$
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000671
Jon Grimm270bd7f2014-08-05 18:11:29 +0000672# List of user mapped to regex to matching image names. (string value)
673#ssh_user_regex = [["^.*[Cc]irros.*$", "root"]]
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000674
675
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300676[messaging]
677
678#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000679# From tempest.config
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300680#
681
682# Catalog type of the Messaging service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000683#catalog_type = messaging
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300684
Matthew Treinishc603d162015-01-05 20:03:40 -0500685# The maximum number of queue records per page when listing queues
686# (integer value)
687#max_queues_per_page = 20
Jon Grimm270bd7f2014-08-05 18:11:29 +0000688
Matthew Treinishc603d162015-01-05 20:03:40 -0500689# The maximum metadata size for a queue (integer value)
690#max_queue_metadata = 65536
Jon Grimm270bd7f2014-08-05 18:11:29 +0000691
692# The maximum number of queue message per page when listing (or)
693# posting messages (integer value)
694#max_messages_per_page = 20
695
Matthew Treinishc603d162015-01-05 20:03:40 -0500696# The maximum size of a message body (integer value)
697#max_message_size = 262144
Jon Grimm270bd7f2014-08-05 18:11:29 +0000698
Matthew Treinishc603d162015-01-05 20:03:40 -0500699# The maximum number of messages per claim (integer value)
700#max_messages_per_claim = 20
701
702# The maximum ttl for a message (integer value)
703#max_message_ttl = 1209600
704
705# The maximum ttl for a claim (integer value)
706#max_claim_ttl = 43200
707
708# The maximum grace period for a claim (integer value)
709#max_claim_grace = 43200
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300710
711
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100712[negative]
713
714#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000715# From tempest.config
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100716#
717
718# Test generator class for all negative tests (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000719#test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100720
721
Sean Daguefc691e32014-01-03 08:51:54 -0500722[network]
723
724#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000725# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500726#
727
728# Catalog type of the Neutron service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000729#catalog_type = network
730
Sean Daguefc691e32014-01-03 08:51:54 -0500731# The network region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +0000732# identity.region is used instead. If no such region is found in the
733# service catalog, the first found one is used. (string value)
734#region =
Sean Daguefc691e32014-01-03 08:51:54 -0500735
Matthew Treinishc603d162015-01-05 20:03:40 -0500736# The endpoint type to use for the network service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400737# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500738#endpoint_type = publicURL
739
Jon Grimm270bd7f2014-08-05 18:11:29 +0000740# The cidr block to allocate tenant ipv4 subnets from (string value)
741#tenant_network_cidr = 10.100.0.0/16
Sean Daguefc691e32014-01-03 08:51:54 -0500742
Henry Gessauffda37a2014-01-16 11:17:55 -0500743# The mask bits for tenant ipv4 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000744#tenant_network_mask_bits = 28
Sean Daguefc691e32014-01-03 08:51:54 -0500745
Jon Grimm270bd7f2014-08-05 18:11:29 +0000746# The cidr block to allocate tenant ipv6 subnets from (string value)
747#tenant_network_v6_cidr = 2003::/48
Henry Gessauffda37a2014-01-16 11:17:55 -0500748
749# The mask bits for tenant ipv6 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000750#tenant_network_v6_mask_bits = 64
Henry Gessauffda37a2014-01-16 11:17:55 -0500751
Jon Grimm270bd7f2014-08-05 18:11:29 +0000752# Whether tenant network connectivity should be evaluated directly
753# (boolean value)
754#tenant_networks_reachable = false
Attila Fazekas640392b2014-06-12 15:58:10 +0200755
Matthew Treinishc603d162015-01-05 20:03:40 -0500756# Id of the public network that provides external connectivity (string
757# value)
758#public_network_id =
759
760# Id of the public router that provides external connectivity. This
761# should only be used when Neutron's 'allow_overlapping_ips' is set to
762# 'False' in neutron.conf. usually not needed past 'Grizzly' release
763# (string value)
764#public_router_id =
765
766# Timeout in seconds to wait for network operation to complete.
767# (integer value)
768#build_timeout = 300
769
770# Time in seconds between network operation status checks. (integer
771# value)
772#build_interval = 1
773
774# List of dns servers which should be used for subnet creation (list
775# value)
776#dns_servers = 8.8.8.8,8.8.4.4
777
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200778# vnic_type to use when Launching instances with pre-configured ports.
779# Supported ports are: ['normal','direct','macvtap'] (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400780# Allowed values: <None>, normal, direct, macvtap
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200781#port_vnic_type = <None>
782
Sean Daguefc691e32014-01-03 08:51:54 -0500783
784[network-feature-enabled]
785
786#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000787# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500788#
789
Matthew Treinishc603d162015-01-05 20:03:40 -0500790# Allow the execution of IPv6 tests (boolean value)
791#ipv6 = true
792
Jon Grimm270bd7f2014-08-05 18:11:29 +0000793# A list of enabled network extensions with a special entry all which
794# indicates every extension is enabled. Empty list indicates all
795# extensions are disabled (list value)
796#api_extensions = all
797
Jon Grimm270bd7f2014-08-05 18:11:29 +0000798# Allow the execution of IPv6 subnet tests that use the extended IPv6
799# attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
800#ipv6_subnet_attributes = false
Sean M. Collinsdd27a4d2014-05-13 10:33:15 -0400801
Sean Daguefc691e32014-01-03 08:51:54 -0500802
803[object-storage]
804
805#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000806# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500807#
808
809# Catalog type of the Object-Storage service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000810#catalog_type = object-store
Sean Daguefc691e32014-01-03 08:51:54 -0500811
Matthew Treinishc603d162015-01-05 20:03:40 -0500812# The object-storage region name to use. If empty, the value of
813# identity.region is used instead. If no such region is found in the
814# service catalog, the first found one is used. (string value)
815#region =
JordanP5d29b2c2013-12-18 13:56:03 +0000816
Jon Grimm270bd7f2014-08-05 18:11:29 +0000817# The endpoint type to use for the object-store service. (string
818# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400819# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000820#endpoint_type = publicURL
Sean Daguefc691e32014-01-03 08:51:54 -0500821
Matthew Treinishc603d162015-01-05 20:03:40 -0500822# Number of seconds to time on waiting for a container to container
823# synchronization complete. (integer value)
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900824#container_sync_timeout = 600
Matthew Treinishc603d162015-01-05 20:03:40 -0500825
826# Number of seconds to wait while looping to check the status of a
827# container to container synchronization (integer value)
828#container_sync_interval = 5
829
Jon Grimm270bd7f2014-08-05 18:11:29 +0000830# Role to add to users created for swift tests to enable creating
831# containers (string value)
832#operator_role = Member
Sean Daguefc691e32014-01-03 08:51:54 -0500833
Matthew Treinish998c91d2014-03-01 12:39:49 -0500834# User role that has reseller admin (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000835#reseller_admin_role = ResellerAdmin
Matthew Treinish998c91d2014-03-01 12:39:49 -0500836
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900837# Name of sync realm. A sync realm is a set of clusters that have
838# agreed to allow container syncing with each other. Set the same
839# realm name as Swift's container-sync-realms.conf (string value)
840#realm_name = realm1
841
842# One name of cluster which is set in the realm whose name is set in
843# 'realm_name' item in this file. Set the same cluster name as Swift's
844# container-sync-realms.conf (string value)
845#cluster_name = name1
846
Sean Daguefc691e32014-01-03 08:51:54 -0500847
848[object-storage-feature-enabled]
849
850#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000851# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500852#
853
Jon Grimm270bd7f2014-08-05 18:11:29 +0000854# A list of the enabled optional discoverable apis. A single entry,
855# all, indicates that all of these features are expected to be enabled
856# (list value)
857#discoverable_apis = all
858
Matthew Treinishc603d162015-01-05 20:03:40 -0500859# Execute (old style) container-sync tests (boolean value)
860#container_sync = true
861
Jon Grimm270bd7f2014-08-05 18:11:29 +0000862# Execute object-versioning tests (boolean value)
863#object_versioning = true
Daisuke Morita20a183f2014-08-25 14:43:36 +0900864
Matthew Treinishc603d162015-01-05 20:03:40 -0500865# Execute discoverability tests (boolean value)
866#discoverability = true
867
Sean Daguefc691e32014-01-03 08:51:54 -0500868
Matthew Treinish3d468112013-10-24 21:49:14 +0000869[orchestration]
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900870
Matthew Treinish3d468112013-10-24 21:49:14 +0000871#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000872# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000873#
Attila Fazekas86950732013-06-08 09:33:08 +0200874
Matthew Treinishc603d162015-01-05 20:03:40 -0500875# Catalog type of the Orchestration service. (string value)
876#catalog_type = orchestration
877
878# The orchestration region name to use. If empty, the value of
879# identity.region is used instead. If no such region is found in the
880# service catalog, the first found one is used. (string value)
881#region =
882
883# The endpoint type to use for the orchestration service. (string
884# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400885# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500886#endpoint_type = publicURL
887
Matthew Treinishdb9721d2015-03-18 14:21:28 -0400888# Role required for users to be able to manage stacks (string value)
889#stack_owner_role = heat_stack_owner
890
Jon Grimm270bd7f2014-08-05 18:11:29 +0000891# Time in seconds between build status checks. (integer value)
892#build_interval = 1
893
894# Timeout in seconds to wait for a stack to build. (integer value)
895#build_timeout = 1200
896
Matthew Treinishc603d162015-01-05 20:03:40 -0500897# Instance type for tests. Needs to be big enough for a full OS plus
898# the test workload (string value)
899#instance_type = m1.micro
Jon Grimm270bd7f2014-08-05 18:11:29 +0000900
Jon Grimm270bd7f2014-08-05 18:11:29 +0000901# Name of existing keypair to launch servers with. (string value)
902#keypair_name = <None>
903
904# Value must match heat configuration of the same name. (integer
905# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500906#max_template_size = 524288
Jon Grimm270bd7f2014-08-05 18:11:29 +0000907
908# Value must match heat configuration of the same name. (integer
909# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500910#max_resources_per_stack = 1000
Steven Hardyfdc6bd72014-03-21 16:56:04 +0000911
Matthew Treinish3d468112013-10-24 21:49:14 +0000912
Doug Hellmann583ce2c2015-03-11 14:55:46 +0000913[oslo_concurrency]
914
915#
916# From oslo.concurrency
917#
918
919# Enables or disables inter-process locks. (boolean value)
920# Deprecated group/name - [DEFAULT]/disable_process_locking
921#disable_process_locking = false
922
923# Directory to use for lock files. For security, the specified
924# directory should only be writable by the user running the processes
925# that need locking. Defaults to environment variable OSLO_LOCK_PATH.
926# If external locks are used, a lock path must be set. (string value)
927# Deprecated group/name - [DEFAULT]/lock_path
928#lock_path = <None>
929
930
Sean Daguefc691e32014-01-03 08:51:54 -0500931[scenario]
Matthew Treinish3d468112013-10-24 21:49:14 +0000932
933#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000934# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000935#
936
Matthew Treinishc603d162015-01-05 20:03:40 -0500937# Directory containing image files (string value)
938#img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
939
940# Image file name (string value)
941# Deprecated group/name - [DEFAULT]/qcow2_img_file
942#img_file = cirros-0.3.1-x86_64-disk.img
943
944# Image disk format (string value)
945#img_disk_format = qcow2
946
947# Image container format (string value)
948#img_container_format = bare
Jon Grimm270bd7f2014-08-05 18:11:29 +0000949
950# AMI image file name (string value)
951#ami_img_file = cirros-0.3.1-x86_64-blank.img
952
953# ARI image file name (string value)
954#ari_img_file = cirros-0.3.1-x86_64-initrd
955
Matthew Treinishc603d162015-01-05 20:03:40 -0500956# AKI image file name (string value)
957#aki_img_file = cirros-0.3.1-x86_64-vmlinuz
Jon Grimm270bd7f2014-08-05 18:11:29 +0000958
Matthew Treinishc603d162015-01-05 20:03:40 -0500959# ssh username for the image file (string value)
960#ssh_user = cirros
Alessandro Pilottib7c1daa2014-08-16 14:24:13 +0300961
Jon Grimm270bd7f2014-08-05 18:11:29 +0000962# specifies how many resources to request at once. Used for large
963# operations testing. (integer value)
964#large_ops_number = 0
Sean Daguefc691e32014-01-03 08:51:54 -0500965
Yair Fried413bf2d2014-11-19 17:07:11 +0200966# DHCP client used by images to renew DCHP lease. If left empty,
967# update operation will be skipped. Supported clients: "udhcpc",
968# "dhclient" (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400969# Allowed values: udhcpc, dhclient
Yair Fried413bf2d2014-11-19 17:07:11 +0200970#dhcp_client = udhcpc
971
Matthew Treinish3d468112013-10-24 21:49:14 +0000972
973[service_available]
974
975#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000976# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000977#
978
Jon Grimm270bd7f2014-08-05 18:11:29 +0000979# Whether or not cinder is expected to be available (boolean value)
980#cinder = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000981
Jon Grimm270bd7f2014-08-05 18:11:29 +0000982# Whether or not neutron is expected to be available (boolean value)
983#neutron = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000984
Matthew Treinishc603d162015-01-05 20:03:40 -0500985# Whether or not glance is expected to be available (boolean value)
986#glance = true
987
988# Whether or not swift is expected to be available (boolean value)
989#swift = true
990
Jon Grimm270bd7f2014-08-05 18:11:29 +0000991# Whether or not nova is expected to be available (boolean value)
992#nova = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000993
Matthew Treinishc603d162015-01-05 20:03:40 -0500994# Whether or not Heat is expected to be available (boolean value)
995#heat = false
996
997# Whether or not Ceilometer is expected to be available (boolean
998# value)
999#ceilometer = true
1000
1001# Whether or not Horizon is expected to be available (boolean value)
1002#horizon = true
1003
Jon Grimm270bd7f2014-08-05 18:11:29 +00001004# Whether or not Sahara is expected to be available (boolean value)
1005#sahara = false
Matthew Treinishe3d26142013-11-26 19:14:58 +00001006
Matthew Treinishc603d162015-01-05 20:03:40 -05001007# Whether or not Ironic is expected to be available (boolean value)
1008#ironic = false
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +03001009
Jon Grimm270bd7f2014-08-05 18:11:29 +00001010# Whether or not Trove is expected to be available (boolean value)
1011#trove = false
Nikhil Manchandadd6886f2014-03-03 01:58:45 -08001012
Jon Grimm270bd7f2014-08-05 18:11:29 +00001013# Whether or not Zaqar is expected to be available (boolean value)
1014#zaqar = false
Malini Kamalambal6e7b3b82014-02-06 06:49:04 -05001015
Matthew Treinish3d468112013-10-24 21:49:14 +00001016
Sean Daguefc691e32014-01-03 08:51:54 -05001017[stress]
1018
1019#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001020# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001021#
1022
Matthew Treinishc603d162015-01-05 20:03:40 -05001023# Directory containing log files on the compute nodes (string value)
1024#nova_logdir = <None>
1025
1026# Maximum number of instances to create during test. (integer value)
1027#max_instances = 16
1028
Jon Grimm270bd7f2014-08-05 18:11:29 +00001029# Controller host. (string value)
1030#controller = <None>
Sean Daguefc691e32014-01-03 08:51:54 -05001031
Matthew Treinishc603d162015-01-05 20:03:40 -05001032# Controller host. (string value)
1033#target_controller = <None>
1034
1035# ssh user. (string value)
1036#target_ssh_user = <None>
1037
1038# Path to private key. (string value)
1039#target_private_key_path = <None>
1040
1041# regexp for list of log files. (string value)
1042#target_logfiles = <None>
1043
1044# time (in seconds) between log file error checks. (integer value)
1045#log_check_interval = 60
1046
Jon Grimm270bd7f2014-08-05 18:11:29 +00001047# The number of threads created while stress test. (integer value)
1048#default_thread_number_per_action = 4
1049
Jon Grimm270bd7f2014-08-05 18:11:29 +00001050# Prevent the cleaning (tearDownClass()) between each stress test run
1051# if an exception occurs during this run. (boolean value)
1052#leave_dirty_stack = false
1053
Matthew Treinishc603d162015-01-05 20:03:40 -05001054# Allows a full cleaning process after a stress test. Caution : this
1055# cleanup will remove every objects of every tenant. (boolean value)
1056#full_clean_stack = false
Julien Leloupa5ee5422014-02-13 14:29:02 +01001057
Sean Daguefc691e32014-01-03 08:51:54 -05001058
1059[telemetry]
1060
1061#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001062# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001063#
1064
1065# Catalog type of the Telemetry service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001066#catalog_type = metering
Sean Daguefc691e32014-01-03 08:51:54 -05001067
Jon Grimm270bd7f2014-08-05 18:11:29 +00001068# The endpoint type to use for the telemetry service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001069# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +00001070#endpoint_type = publicURL
1071
1072# This variable is used as flag to enable notification tests (boolean
JordanPfc62c902014-02-26 14:47:28 +00001073# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001074#too_slow_to_test = true
Vadim Rovachev7bcea352013-12-26 15:56:17 +04001075
Sean Daguefc691e32014-01-03 08:51:54 -05001076
1077[volume]
1078
1079#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001080# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001081#
1082
Jon Grimm270bd7f2014-08-05 18:11:29 +00001083# Time in seconds between volume availability checks. (integer value)
1084#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -05001085
Eric Harney9b1f89c2014-10-14 14:40:19 -04001086# Timeout in seconds to wait for a volume to become available.
Sean Daguefc691e32014-01-03 08:51:54 -05001087# (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001088#build_timeout = 300
Sean Daguefc691e32014-01-03 08:51:54 -05001089
1090# Catalog type of the Volume Service (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001091#catalog_type = volume
1092
Sean Daguefc691e32014-01-03 08:51:54 -05001093# The volume region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +00001094# identity.region is used instead. If no such region is found in the
1095# service catalog, the first found one is used. (string value)
1096#region =
1097
Matthew Treinishc603d162015-01-05 20:03:40 -05001098# The endpoint type to use for the volume service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001099# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -05001100#endpoint_type = publicURL
1101
1102# Name of the backend1 (must be declared in cinder.conf) (string
1103# value)
1104#backend1_name = BACKEND_1
1105
1106# Name of the backend2 (must be declared in cinder.conf) (string
1107# value)
1108#backend2_name = BACKEND_2
1109
Jon Grimm270bd7f2014-08-05 18:11:29 +00001110# Backend protocol to target when creating volume types (string value)
1111#storage_protocol = iSCSI
1112
1113# Backend vendor to target when creating volume types (string value)
1114#vendor_name = Open Source
1115
Matthew Treinishc603d162015-01-05 20:03:40 -05001116# Disk format to use when copying a volume to image (string value)
1117#disk_format = raw
1118
Jon Grimm270bd7f2014-08-05 18:11:29 +00001119# Default size in GB for volumes created by volumes tests (integer
Sean Daguefc691e32014-01-03 08:51:54 -05001120# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001121#volume_size = 1
Jerry Cai9733d0e2014-03-19 15:50:49 +08001122
Sean Daguefc691e32014-01-03 08:51:54 -05001123
1124[volume-feature-enabled]
1125
1126#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001127# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001128#
1129
Matthew Treinishc603d162015-01-05 20:03:40 -05001130# Runs Cinder multi-backend test (requires 2 backends) (boolean value)
1131#multi_backend = false
1132
1133# Runs Cinder volumes backup test (boolean value)
1134#backup = true
1135
1136# Runs Cinder volume snapshot test (boolean value)
1137#snapshot = true
1138
Jon Grimm270bd7f2014-08-05 18:11:29 +00001139# A list of enabled volume extensions with a special entry all which
1140# indicates every extension is enabled. Empty list indicates all
1141# extensions are disabled (list value)
1142#api_extensions = all
Zhi Kun Liude25c022014-02-14 13:25:19 +08001143
Sean Daguefc691e32014-01-03 08:51:54 -05001144# Is the v1 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001145#api_v1 = true
Sean Daguefc691e32014-01-03 08:51:54 -05001146
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +08001147# Is the v2 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001148#api_v2 = true