blob: 2e1d6f31c449dca3bf6a6bb55878439e0a49b265 [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#
Jon Grimm270bd7f2014-08-05 18:11:29 +00004# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +00005#
Attila Fazekasbfd96e12013-07-31 17:19:10 +02006
Matthew Treinish3d468112013-10-24 21:49:14 +00007# Whether to disable inter-process locks (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00008#disable_process_locking = false
Attila Fazekasbfd96e12013-07-31 17:19:10 +02009
Matthew Treinish3d468112013-10-24 21:49:14 +000010# Directory to use for lock files. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +000011#lock_path = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +000012
13#
Jon Grimm270bd7f2014-08-05 18:11:29 +000014# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +000015#
16
Jon Grimm270bd7f2014-08-05 18:11:29 +000017# Print debugging output (set logging level to DEBUG instead of
18# default WARNING level). (boolean value)
19#debug = false
Matthew Treinish3d468112013-10-24 21:49:14 +000020
Jon Grimm270bd7f2014-08-05 18:11:29 +000021# Print more verbose output (set logging level to INFO instead of
22# default WARNING level). (boolean value)
23#verbose = false
Matthew Treinish3d468112013-10-24 21:49:14 +000024
Jon Grimm270bd7f2014-08-05 18:11:29 +000025#
26# From tempest.config
27#
Matthew Treinish3d468112013-10-24 21:49:14 +000028
Jon Grimm270bd7f2014-08-05 18:11:29 +000029# The name of a logging configuration file. This file is appended to
30# any existing logging configuration files. For details about logging
31# configuration files, see the Python logging module documentation.
Matthew Treinish3d468112013-10-24 21:49:14 +000032# (string value)
Sean Daguefc691e32014-01-03 08:51:54 -050033# Deprecated group/name - [DEFAULT]/log_config
Jon Grimm270bd7f2014-08-05 18:11:29 +000034#log_config_append = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +000035
Jon Grimm270bd7f2014-08-05 18:11:29 +000036# DEPRECATED. A logging.Formatter log message format string which may
37# use any of the available logging.LogRecord attributes. This option
38# is deprecated. Please use logging_context_format_string and
39# logging_default_format_string instead. (string value)
40#log_format = <None>
Sean Dague2bbdf422014-07-11 07:58:33 -040041
Matthew Treinishc603d162015-01-05 20:03:40 -050042# Format string for %%(asctime)s in log records. Default: %(default)s
43# . (string value)
44#log_date_format = %Y-%m-%d %H:%M:%S
45
46# (Optional) Name of log file to output to. If no default is set,
47# logging will go to stdout. (string value)
48# Deprecated group/name - [DEFAULT]/logfile
49#log_file = <None>
50
51# (Optional) The base directory used for relative --log-file paths.
52# (string value)
53# Deprecated group/name - [DEFAULT]/logdir
54#log_dir = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +000055
56# Use syslog for logging. Existing syslog format is DEPRECATED during
57# I, and will change in J to honor RFC5424. (boolean value)
58#use_syslog = false
59
60# (Optional) Enables or disables syslog rfc5424 format for logging. If
61# enabled, prefixes the MSG part of the syslog message with APP-NAME
62# (RFC5424). The format without the APP-NAME is deprecated in I, and
63# will be removed in J. (boolean value)
64#use_syslog_rfc_format = false
65
Matthew Treinishc603d162015-01-05 20:03:40 -050066# Syslog facility to receive log lines. (string value)
67#syslog_log_facility = LOG_USER
68
Jon Grimm270bd7f2014-08-05 18:11:29 +000069#
70# From tempest.config
71#
72
73# Log output to standard error. (boolean value)
74#use_stderr = true
75
76#
77# From tempest.config
78#
79
Matthew Treinishc603d162015-01-05 20:03:40 -050080# Format string to use for log messages with context. (string value)
81#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
82
83# Format string to use for log messages without context. (string
84# value)
85#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
86
87# Data to append to log format when level is DEBUG. (string value)
88#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
89
90# Prefix each line of exception output with this format. (string
91# value)
92#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s
93
Jon Grimm270bd7f2014-08-05 18:11:29 +000094# List of logger=LEVEL pairs. (list value)
Davanum Srinivasd4f1b9a2014-11-04 08:40:59 +010095#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,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN
Jon Grimm270bd7f2014-08-05 18:11:29 +000096
Matthew Treinishc603d162015-01-05 20:03:40 -050097# Enables or disables publication of error events. (boolean value)
98#publish_errors = false
99
Jon Grimm270bd7f2014-08-05 18:11:29 +0000100# Enables or disables fatal status of deprecations. (boolean value)
101#fatal_deprecations = false
102
103# The format for an instance that is passed with the log message.
104# (string value)
105#instance_format = "[instance: %(uuid)s] "
106
107# The format for an instance UUID that is passed with the log message.
108# (string value)
109#instance_uuid_format = "[instance: %(uuid)s] "
110
Marc Kodererb714de52013-08-08 09:21:46 +0200111
Matthew Treinishc791ac42014-07-16 09:15:23 -0400112[auth]
113
114#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000115# From tempest.config
Matthew Treinishc791ac42014-07-16 09:15:23 -0400116#
117
Matthew Treinishc603d162015-01-05 20:03:40 -0500118# Path to the yaml file that contains the list of credentials to use
119# for running tests (string value)
120#test_accounts_file = etc/accounts.yaml
121
Jon Grimm270bd7f2014-08-05 18:11:29 +0000122# Allows test cases to create/destroy tenants and users. This option
123# requires that OpenStack Identity API admin credentials are known. If
124# false, isolated test cases and parallel execution, can still be
125# achieved configuring a list of test accounts (boolean value)
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100126# Deprecated group/name - [compute]/allow_tenant_isolation
127# Deprecated group/name - [orchestration]/allow_tenant_isolation
Jon Grimm270bd7f2014-08-05 18:11:29 +0000128#allow_tenant_isolation = false
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100129
130# If set to True it enables the Accounts provider, which locks
Jon Grimm270bd7f2014-08-05 18:11:29 +0000131# credentials to allow for parallel execution with pre-provisioned
132# accounts. It can only be used to run tests that ensure credentials
133# cleanup happens. It requires at least `2 * CONC` distinct accounts
134# configured in `test_accounts_file`, with CONC == the number of
135# concurrent test processes. (boolean value)
136#locking_credentials_provider = false
137
Matthew Treinishc791ac42014-07-16 09:15:23 -0400138
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300139[baremetal]
140
141#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000142# From tempest.config
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300143#
144
Matthew Treinishc603d162015-01-05 20:03:40 -0500145# Catalog type of the baremetal provisioning service (string value)
146#catalog_type = baremetal
147
148# Whether the Ironic nova-compute driver is enabled (boolean value)
149#driver_enabled = false
150
151# Driver name which Ironic uses (string value)
152#driver = fake
153
154# The endpoint type to use for the baremetal provisioning service
155# (string value)
156#endpoint_type = publicURL
157
Jon Grimm270bd7f2014-08-05 18:11:29 +0000158# Timeout for Ironic node to completely provision (integer value)
159#active_timeout = 300
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300160
Jon Grimm270bd7f2014-08-05 18:11:29 +0000161# Timeout for association of Nova instance and Ironic node (integer
Adam Gandelman4a48a602014-03-20 18:23:18 -0700162# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000163#association_timeout = 30
164
Adam Gandelman4a48a602014-03-20 18:23:18 -0700165# Timeout for Ironic power transitions. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000166#power_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700167
168# Timeout for unprovisioning an Ironic node. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000169#unprovision_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700170
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300171
Sean Daguefc691e32014-01-03 08:51:54 -0500172[boto]
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400173
174#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000175# From tempest.config
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400176#
177
Matthew Treinishc603d162015-01-05 20:03:40 -0500178# EC2 URL (string value)
179#ec2_url = http://localhost:8773/services/Cloud
Sean Daguefc691e32014-01-03 08:51:54 -0500180
Matthew Treinishc603d162015-01-05 20:03:40 -0500181# S3 URL (string value)
182#s3_url = http://localhost:8080
Sean Daguefc691e32014-01-03 08:51:54 -0500183
Jon Grimm270bd7f2014-08-05 18:11:29 +0000184# AWS Secret Key (string value)
185#aws_secret = <None>
Sean Daguefc691e32014-01-03 08:51:54 -0500186
Matthew Treinishc603d162015-01-05 20:03:40 -0500187# AWS Access Key (string value)
188#aws_access = <None>
189
Jon Grimm270bd7f2014-08-05 18:11:29 +0000190# AWS Zone for EC2 tests (string value)
191#aws_zone = nova
Sean Daguefc691e32014-01-03 08:51:54 -0500192
Jon Grimm270bd7f2014-08-05 18:11:29 +0000193# S3 Materials Path (string value)
194#s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0
195
Matthew Treinishc603d162015-01-05 20:03:40 -0500196# ARI Ramdisk Image manifest (string value)
197#ari_manifest = cirros-0.3.0-x86_64-initrd.manifest.xml
198
199# AMI Machine Image manifest (string value)
200#ami_manifest = cirros-0.3.0-x86_64-blank.img.manifest.xml
201
202# AKI Kernel Image manifest (string value)
203#aki_manifest = cirros-0.3.0-x86_64-vmlinuz.manifest.xml
204
205# Instance type (string value)
206#instance_type = m1.tiny
207
208# boto Http socket timeout (integer value)
209#http_socket_timeout = 3
210
211# boto num_retries on error (integer value)
212#num_retries = 1
213
214# Status Change Timeout (integer value)
215#build_timeout = 60
216
217# Status Change Test Interval (integer value)
218#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -0500219
220
221[cli]
222
223#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000224# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500225#
226
Jon Grimm270bd7f2014-08-05 18:11:29 +0000227# enable cli tests (boolean value)
228#enabled = true
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400229
Matthew Treinishc603d162015-01-05 20:03:40 -0500230# directory where python client binaries are located (string value)
231#cli_dir = /usr/local/bin
232
Sean Dague44b24682014-02-20 19:08:24 -0500233# Whether the tempest run location has access to the *-manage
Jon Grimm270bd7f2014-08-05 18:11:29 +0000234# commands. In a pure blackbox environment it will not. (boolean
235# value)
236#has_manage = true
Sean Dague44b24682014-02-20 19:08:24 -0500237
Sean Daguefc691e32014-01-03 08:51:54 -0500238# Number of seconds to wait on a CLI timeout (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000239#timeout = 15
Arata Notsu8f440392013-09-13 16:14:20 +0900240
Sean Dague83401992013-05-06 17:46:36 -0400241
Matthew Treinish3d468112013-10-24 21:49:14 +0000242[compute]
243
244#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000245# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000246#
247
Matthew Treinishafcb6b42014-05-27 13:50:02 -0400248# Valid primary image reference to be used in tests. This is a
249# required option (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000250#image_ref = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000251
Jon Grimm270bd7f2014-08-05 18:11:29 +0000252# Valid secondary image reference to be used in tests. This is a
253# required option, but if only one image is available duplicate the
254# value of image_ref above (string value)
255#image_ref_alt = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000256
Matthew Treinishc603d162015-01-05 20:03:40 -0500257# Valid primary flavor to use in tests. (string value)
258#flavor_ref = 1
259
260# Valid secondary flavor to be used in tests. (string value)
261#flavor_ref_alt = 2
Matthew Treinish3d468112013-10-24 21:49:14 +0000262
Jon Grimm270bd7f2014-08-05 18:11:29 +0000263# User name used to authenticate to an instance. (string value)
264#image_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000265
Matthew Treinishc603d162015-01-05 20:03:40 -0500266# Password used to authenticate to an instance. (string value)
267#image_ssh_password = password
Matthew Treinish3d468112013-10-24 21:49:14 +0000268
Matthew Treinishc603d162015-01-05 20:03:40 -0500269# User name used to authenticate to an instance using the alternate
270# image. (string value)
271#image_alt_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000272
Matthew Treinishc603d162015-01-05 20:03:40 -0500273# Password used to authenticate to an instance using the alternate
274# image. (string value)
275#image_alt_ssh_password = password
Jon Grimm270bd7f2014-08-05 18:11:29 +0000276
Matthew Treinishc603d162015-01-05 20:03:40 -0500277# Time in seconds between build status checks. (integer value)
278#build_interval = 1
Jon Grimm270bd7f2014-08-05 18:11:29 +0000279
Matthew Treinishc603d162015-01-05 20:03:40 -0500280# Timeout in seconds to wait for an instance to build. Other services
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200281# that do not define build_timeout will inherit this value. (integer
282# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500283#build_timeout = 300
Jon Grimm270bd7f2014-08-05 18:11:29 +0000284
285# Should the tests ssh to instances? (boolean value)
286#run_ssh = false
287
Jon Grimm270bd7f2014-08-05 18:11:29 +0000288# Auth method used for authenticate to the instance. Valid choices
289# are: keypair, configured, adminpass. keypair: start the servers with
290# an ssh keypair. configured: use the configured user and password.
291# adminpass: use the injected adminPass. disabled: avoid using ssh
292# when it is an option. (string value)
293#ssh_auth_method = keypair
294
Jon Grimm270bd7f2014-08-05 18:11:29 +0000295# How to connect to the instance? fixed: using the first ip belongs
296# the fixed network floating: creating and using a floating ip (string
JordanP5d29b2c2013-12-18 13:56:03 +0000297# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000298#ssh_connect_method = fixed
JordanP5d29b2c2013-12-18 13:56:03 +0000299
Matthew Treinishc603d162015-01-05 20:03:40 -0500300# User name used to authenticate to an instance. (string value)
301#ssh_user = root
302
303# Timeout in seconds to wait for ping to succeed. (integer value)
304#ping_timeout = 120
305
Jon Grimm270bd7f2014-08-05 18:11:29 +0000306# Timeout in seconds to wait for authentication to succeed. (integer
307# value)
308#ssh_timeout = 300
Matthew Treinish3d468112013-10-24 21:49:14 +0000309
Matthew Treinishc603d162015-01-05 20:03:40 -0500310# Additional wait time for clean state, when there is no OS-EXT-STS
311# extension available (integer value)
312#ready_wait = 0
313
314# Timeout in seconds to wait for output from ssh channel. (integer
315# value)
316#ssh_channel_timeout = 60
317
318# Name of the fixed network that is visible to all test tenants.
319# (string value)
320#fixed_network_name = private
321
322# Network used for SSH connections. Ignored if
323# use_floatingip_for_ssh=true or run_ssh=false. (string value)
324#network_for_ssh = public
325
326# IP version used for SSH connections. (integer value)
327#ip_version_for_ssh = 4
Jon Grimm270bd7f2014-08-05 18:11:29 +0000328
329# Does SSH use Floating IPs? (boolean value)
330#use_floatingip_for_ssh = true
331
Matthew Treinishc603d162015-01-05 20:03:40 -0500332# Catalog type of the Compute service. (string value)
333#catalog_type = compute
334
335# The compute region name to use. If empty, the value of
336# identity.region is used instead. If no such region is found in the
337# service catalog, the first found one is used. (string value)
338#region =
339
340# The endpoint type to use for the compute service. (string value)
341#endpoint_type = publicURL
342
343# Path to a private key file for SSH access to remote hosts (string
344# value)
345#path_to_private_key = <None>
346
Jon Grimm270bd7f2014-08-05 18:11:29 +0000347# Expected device name when a volume is attached to an instance
Matthew Treinish3d468112013-10-24 21:49:14 +0000348# (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000349#volume_device_name = vdb
Sean Dague82190852014-05-24 07:42:59 -0400350
Matthew Treinishc603d162015-01-05 20:03:40 -0500351# Time in seconds before a shelved instance is eligible for removing
352# from a host. -1 never offload, 0 offload when shelved. This time
353# should be the same as the time of nova.conf, and some tests will run
354# for as long as the time. (integer value)
355#shelved_offload_time = 0
356
357# Unallocated floating IP range, which will be used to test the
358# floating IP bulk feature for CRUD operation. This block must not
359# overlap an existing floating IP pool. (string value)
360#floating_ip_range = 10.0.0.0/29
361
Sean Daguefc691e32014-01-03 08:51:54 -0500362
Sean Daguefc691e32014-01-03 08:51:54 -0500363[compute-feature-enabled]
Matthew Treinish3d468112013-10-24 21:49:14 +0000364
365#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000366# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000367#
368
Matthew Treinishc603d162015-01-05 20:03:40 -0500369# If false, skip disk config tests (boolean value)
370#disk_config = true
371
Jon Grimm270bd7f2014-08-05 18:11:29 +0000372# A list of enabled compute extensions with a special entry all which
373# indicates every extension is enabled. Each extension should be
374# specified with alias name. Empty list indicates all extensions are
375# disabled (list value)
376#api_extensions = all
Matthew Treinish3d468112013-10-24 21:49:14 +0000377
Jon Grimm270bd7f2014-08-05 18:11:29 +0000378# Does the test environment support changing the admin password?
379# (boolean value)
380#change_password = false
381
382# Does the test environment support obtaining instance serial console
383# output? (boolean value)
384#console_output = true
Matthew Treinish20866a22014-06-12 14:58:36 -0400385
Matthew Treinishc603d162015-01-05 20:03:40 -0500386# Does the test environment support resizing? (boolean value)
387#resize = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000388
Matthew Treinishc603d162015-01-05 20:03:40 -0500389# Does the test environment support pausing? (boolean value)
390#pause = true
Ghanshyam9c2e50d2014-07-22 21:32:05 +0900391
Matthew Treinishc603d162015-01-05 20:03:40 -0500392# Does the test environment support shelving/unshelving? (boolean
393# value)
394#shelve = true
395
396# Does the test environment support suspend/resume? (boolean value)
397#suspend = true
Adam Gandelman7186f7a2014-07-23 09:28:56 -0400398
Jon Grimm270bd7f2014-08-05 18:11:29 +0000399# Does the test environment support live migration available? (boolean
400# value)
Joe Gordon31a139a2014-11-17 16:39:04 -0800401#live_migration = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000402
Matthew Treinishc603d162015-01-05 20:03:40 -0500403# Does the test environment use block devices for live migration
404# (boolean value)
405#block_migration_for_live_migration = false
406
407# Does the test environment block migration support cinder iSCSI
408# volumes (boolean value)
409#block_migrate_cinder_iscsi = false
410
411# Enable VNC console. This configuration value should be same as
412# [nova.vnc]->vnc_enabled in nova.conf (boolean value)
413#vnc_console = false
414
415# Enable Spice console. This configuration value should be same as
416# [nova.spice]->enabled in nova.conf (boolean value)
417#spice_console = false
Jon Grimm270bd7f2014-08-05 18:11:29 +0000418
419# Enable RDP console. This configuration value should be same as
420# [nova.rdp]->enabled in nova.conf (boolean value)
421#rdp_console = false
422
423# Does the test environment support instance rescue mode? (boolean
424# value)
425#rescue = true
426
Matthew Treinishc603d162015-01-05 20:03:40 -0500427# Enables returning of the instance password by the relevant server
428# API calls such as create, rebuild or rescue. (boolean value)
429#enable_instance_password = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000430
Matthew Treinishc603d162015-01-05 20:03:40 -0500431# Does the test environment support dynamic network interface
432# attachment? (boolean value)
433#interface_attach = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000434
435# Does the test environment support creating snapshot images of
436# running instances? (boolean value)
437#snapshot = true
438
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100439
Julie Pichond1017642013-07-24 16:37:23 +0100440[dashboard]
Julie Pichond1017642013-07-24 16:37:23 +0100441
Matthew Treinish3d468112013-10-24 21:49:14 +0000442#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000443# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000444#
Julie Pichond1017642013-07-24 16:37:23 +0100445
Matthew Treinish3d468112013-10-24 21:49:14 +0000446# Where the dashboard can be found (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000447#dashboard_url = http://localhost/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900448
Matthew Treinish3d468112013-10-24 21:49:14 +0000449# Login page for the dashboard (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000450#login_url = http://localhost/auth/login/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900451
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900452
Sean Daguefc691e32014-01-03 08:51:54 -0500453[data_processing]
454
455#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000456# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500457#
458
459# Catalog type of the data processing service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000460#catalog_type = data_processing
Sean Daguefc691e32014-01-03 08:51:54 -0500461
Jon Grimm270bd7f2014-08-05 18:11:29 +0000462# The endpoint type to use for the data processing service. (string
463# value)
464#endpoint_type = publicURL
JordanPfc62c902014-02-26 14:47:28 +0000465
Sean Daguefc691e32014-01-03 08:51:54 -0500466
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800467[database]
468
469#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000470# From tempest.config
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800471#
472
473# Catalog type of the Database service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000474#catalog_type = database
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800475
Jon Grimm270bd7f2014-08-05 18:11:29 +0000476# Valid primary flavor to use in database tests. (string value)
477#db_flavor_ref = 1
Peter Stachowski320f9c72014-04-21 16:13:23 -0400478
Matthew Treinishc603d162015-01-05 20:03:40 -0500479# Current database version to use in database tests. (string value)
480#db_current_version = v1.0
481
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800482
Sean Daguefc691e32014-01-03 08:51:54 -0500483[debug]
484
485#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000486# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500487#
488
Jon Grimm270bd7f2014-08-05 18:11:29 +0000489# A regex to determine which requests should be traced. This is a
490# regex to match the caller for rest client requests to be able to
491# selectively trace calls out of specific classes and methods. It
492# largely exists for test development, and is not expected to be used
493# in a real deploy of tempest. This will be matched against the
494# discovered ClassName:method in the test environment. Expected
495# values for this field are: * ClassName:test_method_name - traces
496# one test_method * ClassName:setUp(Class) - traces specific setup
497# functions * ClassName:tearDown(Class) - traces specific teardown
498# functions * ClassName:_run_cleanups - traces the cleanup functions
499# If nothing is specified, this feature is not enabled. To trace
500# everything specify .* as the regex. (string value)
501#trace_requests =
Sean Daguec522c092014-03-24 10:43:22 -0400502
Sean Daguefc691e32014-01-03 08:51:54 -0500503
504[identity]
505
506#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000507# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500508#
509
Jon Grimm270bd7f2014-08-05 18:11:29 +0000510# Catalog type of the Identity service. (string value)
511#catalog_type = identity
512
513# Set to True if using self-signed SSL certificates. (boolean value)
514#disable_ssl_certificate_validation = false
515
Matthew Treinishc603d162015-01-05 20:03:40 -0500516# Specify a CA bundle file to use in verifying a TLS (https) server
517# certificate. (string value)
518#ca_certificates_file = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +0000519
520# Full URI of the OpenStack Identity API (Keystone), v2 (string value)
521#uri = <None>
522
523# Full URI of the OpenStack Identity API (Keystone), v3 (string value)
524#uri_v3 = <None>
525
Matthew Treinishc603d162015-01-05 20:03:40 -0500526# Identity API version to be used for authentication for API tests.
527# (string value)
528#auth_version = v2
529
530# The identity region name to use. Also used as the other services'
531# region name unless they are set explicitly. If no such region is
532# found in the service catalog, the first found one is used. (string
533# value)
534#region = RegionOne
535
536# The endpoint type to use for the identity service. (string value)
537#endpoint_type = publicURL
538
Jon Grimm270bd7f2014-08-05 18:11:29 +0000539# Username to use for Nova API requests. (string value)
540#username = <None>
Andrea Frittolib1b04bb2014-04-06 11:57:07 +0100541
Matthew Treinishc603d162015-01-05 20:03:40 -0500542# Tenant name to use for Nova API requests. (string value)
543#tenant_name = <None>
544
545# Role required to administrate keystone. (string value)
546#admin_role = admin
547
548# API key to use when authenticating. (string value)
549#password = <None>
550
551# Domain name for authentication (Keystone V3).The same domain applies
552# to user and project (string value)
553#domain_name = <None>
554
555# Username of alternate user to use for Nova API requests. (string
556# value)
557#alt_username = <None>
558
559# Alternate user's Tenant name to use for Nova API requests. (string
560# value)
561#alt_tenant_name = <None>
562
563# API key to use when authenticating as alternate user. (string value)
564#alt_password = <None>
565
566# Alternate domain name for authentication (Keystone V3).The same
567# domain applies to user and project (string value)
568#alt_domain_name = <None>
569
570# Administrative Username to use for Keystone API requests. (string
571# value)
572#admin_username = <None>
573
574# Administrative Tenant name to use for Keystone API requests. (string
575# value)
576#admin_tenant_name = <None>
577
578# API key to use when authenticating as admin. (string value)
579#admin_password = <None>
580
581# Admin domain name for authentication (Keystone V3).The same domain
582# applies to user and project (string value)
583#admin_domain_name = <None>
584
Sean Daguefc691e32014-01-03 08:51:54 -0500585
Matthew Treinishd5021a72014-01-09 18:42:51 +0000586[identity-feature-enabled]
587
588#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000589# From tempest.config
Matthew Treinishd5021a72014-01-09 18:42:51 +0000590#
591
Matthew Treinishc603d162015-01-05 20:03:40 -0500592# Does the identity service have delegation and impersonation enabled
593# (boolean value)
594#trust = true
595
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000596# Is the v2 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000597#api_v2 = true
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000598
599# Is the v3 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000600#api_v3 = true
601
Matthew Treinishd5021a72014-01-09 18:42:51 +0000602
Sean Daguefc691e32014-01-03 08:51:54 -0500603[image]
604
605#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000606# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500607#
608
609# Catalog type of the Image service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000610#catalog_type = image
Sean Daguefc691e32014-01-03 08:51:54 -0500611
Matthew Treinishc603d162015-01-05 20:03:40 -0500612# The image region name to use. If empty, the value of identity.region
613# is used instead. If no such region is found in the service catalog,
614# the first found one is used. (string value)
615#region =
616
Jon Grimm270bd7f2014-08-05 18:11:29 +0000617# The endpoint type to use for the image service. (string value)
618#endpoint_type = publicURL
JordanP5d29b2c2013-12-18 13:56:03 +0000619
Sean Daguefc691e32014-01-03 08:51:54 -0500620# http accessible image (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000621#http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
622
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200623# Timeout in seconds to wait for an image to become available.
624# (integer value)
625#build_timeout = 300
626
627# Time in seconds between image operation status checks. (integer
628# value)
629#build_interval = 1
630
Sean Daguefc691e32014-01-03 08:51:54 -0500631
632[image-feature-enabled]
633
634#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000635# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500636#
637
Jon Grimm270bd7f2014-08-05 18:11:29 +0000638# Is the v2 image API enabled (boolean value)
639#api_v2 = true
Sean Daguefc691e32014-01-03 08:51:54 -0500640
Matthew Treinishc603d162015-01-05 20:03:40 -0500641# Is the v1 image API enabled (boolean value)
642#api_v1 = true
643
Sean Daguefc691e32014-01-03 08:51:54 -0500644
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000645[input-scenario]
646
647#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000648# From tempest.config
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000649#
650
Jon Grimm270bd7f2014-08-05 18:11:29 +0000651# Matching images become parameters for scenario tests (string value)
652#image_regex = ^cirros-0.3.1-x86_64-uec$
653
Matthew Treinishc603d162015-01-05 20:03:40 -0500654# Matching flavors become parameters for scenario tests (string value)
655#flavor_regex = ^m1.nano$
656
Jon Grimm270bd7f2014-08-05 18:11:29 +0000657# SSH verification in tests is skippedfor matching images (string
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000658# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000659#non_ssh_image_regex = ^.*[Ww]in.*$
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000660
Jon Grimm270bd7f2014-08-05 18:11:29 +0000661# List of user mapped to regex to matching image names. (string value)
662#ssh_user_regex = [["^.*[Cc]irros.*$", "root"]]
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000663
664
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300665[messaging]
666
667#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000668# From tempest.config
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300669#
670
671# Catalog type of the Messaging service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000672#catalog_type = messaging
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300673
Matthew Treinishc603d162015-01-05 20:03:40 -0500674# The maximum number of queue records per page when listing queues
675# (integer value)
676#max_queues_per_page = 20
Jon Grimm270bd7f2014-08-05 18:11:29 +0000677
Matthew Treinishc603d162015-01-05 20:03:40 -0500678# The maximum metadata size for a queue (integer value)
679#max_queue_metadata = 65536
Jon Grimm270bd7f2014-08-05 18:11:29 +0000680
681# The maximum number of queue message per page when listing (or)
682# posting messages (integer value)
683#max_messages_per_page = 20
684
Matthew Treinishc603d162015-01-05 20:03:40 -0500685# The maximum size of a message body (integer value)
686#max_message_size = 262144
Jon Grimm270bd7f2014-08-05 18:11:29 +0000687
Matthew Treinishc603d162015-01-05 20:03:40 -0500688# The maximum number of messages per claim (integer value)
689#max_messages_per_claim = 20
690
691# The maximum ttl for a message (integer value)
692#max_message_ttl = 1209600
693
694# The maximum ttl for a claim (integer value)
695#max_claim_ttl = 43200
696
697# The maximum grace period for a claim (integer value)
698#max_claim_grace = 43200
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300699
700
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100701[negative]
702
703#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000704# From tempest.config
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100705#
706
707# Test generator class for all negative tests (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000708#test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100709
710
Sean Daguefc691e32014-01-03 08:51:54 -0500711[network]
712
713#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000714# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500715#
716
717# Catalog type of the Neutron service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000718#catalog_type = network
719
Sean Daguefc691e32014-01-03 08:51:54 -0500720# The network region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +0000721# identity.region is used instead. If no such region is found in the
722# service catalog, the first found one is used. (string value)
723#region =
Sean Daguefc691e32014-01-03 08:51:54 -0500724
Matthew Treinishc603d162015-01-05 20:03:40 -0500725# The endpoint type to use for the network service. (string value)
726#endpoint_type = publicURL
727
Jon Grimm270bd7f2014-08-05 18:11:29 +0000728# The cidr block to allocate tenant ipv4 subnets from (string value)
729#tenant_network_cidr = 10.100.0.0/16
Sean Daguefc691e32014-01-03 08:51:54 -0500730
Henry Gessauffda37a2014-01-16 11:17:55 -0500731# The mask bits for tenant ipv4 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000732#tenant_network_mask_bits = 28
Sean Daguefc691e32014-01-03 08:51:54 -0500733
Jon Grimm270bd7f2014-08-05 18:11:29 +0000734# The cidr block to allocate tenant ipv6 subnets from (string value)
735#tenant_network_v6_cidr = 2003::/48
Henry Gessauffda37a2014-01-16 11:17:55 -0500736
737# The mask bits for tenant ipv6 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000738#tenant_network_v6_mask_bits = 64
Henry Gessauffda37a2014-01-16 11:17:55 -0500739
Jon Grimm270bd7f2014-08-05 18:11:29 +0000740# Whether tenant network connectivity should be evaluated directly
741# (boolean value)
742#tenant_networks_reachable = false
Attila Fazekas640392b2014-06-12 15:58:10 +0200743
Matthew Treinishc603d162015-01-05 20:03:40 -0500744# Id of the public network that provides external connectivity (string
745# value)
746#public_network_id =
747
748# Id of the public router that provides external connectivity. This
749# should only be used when Neutron's 'allow_overlapping_ips' is set to
750# 'False' in neutron.conf. usually not needed past 'Grizzly' release
751# (string value)
752#public_router_id =
753
754# Timeout in seconds to wait for network operation to complete.
755# (integer value)
756#build_timeout = 300
757
758# Time in seconds between network operation status checks. (integer
759# value)
760#build_interval = 1
761
762# List of dns servers which should be used for subnet creation (list
763# value)
764#dns_servers = 8.8.8.8,8.8.4.4
765
Sean Daguefc691e32014-01-03 08:51:54 -0500766
767[network-feature-enabled]
768
769#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000770# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500771#
772
Matthew Treinishc603d162015-01-05 20:03:40 -0500773# Allow the execution of IPv6 tests (boolean value)
774#ipv6 = true
775
Jon Grimm270bd7f2014-08-05 18:11:29 +0000776# A list of enabled network extensions with a special entry all which
777# indicates every extension is enabled. Empty list indicates all
778# extensions are disabled (list value)
779#api_extensions = all
780
Jon Grimm270bd7f2014-08-05 18:11:29 +0000781# Allow the execution of IPv6 subnet tests that use the extended IPv6
782# attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
783#ipv6_subnet_attributes = false
Sean M. Collinsdd27a4d2014-05-13 10:33:15 -0400784
Sean Daguefc691e32014-01-03 08:51:54 -0500785
786[object-storage]
787
788#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000789# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500790#
791
792# Catalog type of the Object-Storage service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000793#catalog_type = object-store
Sean Daguefc691e32014-01-03 08:51:54 -0500794
Matthew Treinishc603d162015-01-05 20:03:40 -0500795# The object-storage region name to use. If empty, the value of
796# identity.region is used instead. If no such region is found in the
797# service catalog, the first found one is used. (string value)
798#region =
JordanP5d29b2c2013-12-18 13:56:03 +0000799
Jon Grimm270bd7f2014-08-05 18:11:29 +0000800# The endpoint type to use for the object-store service. (string
801# value)
802#endpoint_type = publicURL
Sean Daguefc691e32014-01-03 08:51:54 -0500803
Matthew Treinishc603d162015-01-05 20:03:40 -0500804# Number of seconds to time on waiting for a container to container
805# synchronization complete. (integer value)
806#container_sync_timeout = 120
807
808# Number of seconds to wait while looping to check the status of a
809# container to container synchronization (integer value)
810#container_sync_interval = 5
811
Jon Grimm270bd7f2014-08-05 18:11:29 +0000812# Role to add to users created for swift tests to enable creating
813# containers (string value)
814#operator_role = Member
Sean Daguefc691e32014-01-03 08:51:54 -0500815
Matthew Treinish998c91d2014-03-01 12:39:49 -0500816# User role that has reseller admin (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000817#reseller_admin_role = ResellerAdmin
Matthew Treinish998c91d2014-03-01 12:39:49 -0500818
Sean Daguefc691e32014-01-03 08:51:54 -0500819
820[object-storage-feature-enabled]
821
822#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000823# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500824#
825
Jon Grimm270bd7f2014-08-05 18:11:29 +0000826# A list of the enabled optional discoverable apis. A single entry,
827# all, indicates that all of these features are expected to be enabled
828# (list value)
829#discoverable_apis = all
830
Matthew Treinishc603d162015-01-05 20:03:40 -0500831# Execute (old style) container-sync tests (boolean value)
832#container_sync = true
833
Jon Grimm270bd7f2014-08-05 18:11:29 +0000834# Execute object-versioning tests (boolean value)
835#object_versioning = true
Daisuke Morita20a183f2014-08-25 14:43:36 +0900836
Matthew Treinishc603d162015-01-05 20:03:40 -0500837# Execute discoverability tests (boolean value)
838#discoverability = true
839
Sean Daguefc691e32014-01-03 08:51:54 -0500840
Matthew Treinish3d468112013-10-24 21:49:14 +0000841[orchestration]
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900842
Matthew Treinish3d468112013-10-24 21:49:14 +0000843#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000844# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000845#
Attila Fazekas86950732013-06-08 09:33:08 +0200846
Matthew Treinishc603d162015-01-05 20:03:40 -0500847# Catalog type of the Orchestration service. (string value)
848#catalog_type = orchestration
849
850# The orchestration region name to use. If empty, the value of
851# identity.region is used instead. If no such region is found in the
852# service catalog, the first found one is used. (string value)
853#region =
854
855# The endpoint type to use for the orchestration service. (string
856# value)
857#endpoint_type = publicURL
858
Jon Grimm270bd7f2014-08-05 18:11:29 +0000859# Time in seconds between build status checks. (integer value)
860#build_interval = 1
861
862# Timeout in seconds to wait for a stack to build. (integer value)
863#build_timeout = 1200
864
Matthew Treinishc603d162015-01-05 20:03:40 -0500865# Instance type for tests. Needs to be big enough for a full OS plus
866# the test workload (string value)
867#instance_type = m1.micro
Jon Grimm270bd7f2014-08-05 18:11:29 +0000868
869# Name of heat-cfntools enabled image to use when launching test
870# instances. (string value)
871#image_ref = <None>
872
Jon Grimm270bd7f2014-08-05 18:11:29 +0000873# Name of existing keypair to launch servers with. (string value)
874#keypair_name = <None>
875
876# Value must match heat configuration of the same name. (integer
877# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500878#max_template_size = 524288
Jon Grimm270bd7f2014-08-05 18:11:29 +0000879
880# Value must match heat configuration of the same name. (integer
881# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500882#max_resources_per_stack = 1000
Steven Hardyfdc6bd72014-03-21 16:56:04 +0000883
Matthew Treinish3d468112013-10-24 21:49:14 +0000884
Sean Daguefc691e32014-01-03 08:51:54 -0500885[scenario]
Matthew Treinish3d468112013-10-24 21:49:14 +0000886
887#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000888# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000889#
890
Matthew Treinishc603d162015-01-05 20:03:40 -0500891# Directory containing image files (string value)
892#img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
893
894# Image file name (string value)
895# Deprecated group/name - [DEFAULT]/qcow2_img_file
896#img_file = cirros-0.3.1-x86_64-disk.img
897
898# Image disk format (string value)
899#img_disk_format = qcow2
900
901# Image container format (string value)
902#img_container_format = bare
Jon Grimm270bd7f2014-08-05 18:11:29 +0000903
904# AMI image file name (string value)
905#ami_img_file = cirros-0.3.1-x86_64-blank.img
906
907# ARI image file name (string value)
908#ari_img_file = cirros-0.3.1-x86_64-initrd
909
Matthew Treinishc603d162015-01-05 20:03:40 -0500910# AKI image file name (string value)
911#aki_img_file = cirros-0.3.1-x86_64-vmlinuz
Jon Grimm270bd7f2014-08-05 18:11:29 +0000912
Matthew Treinishc603d162015-01-05 20:03:40 -0500913# ssh username for the image file (string value)
914#ssh_user = cirros
Alessandro Pilottib7c1daa2014-08-16 14:24:13 +0300915
Jon Grimm270bd7f2014-08-05 18:11:29 +0000916# specifies how many resources to request at once. Used for large
917# operations testing. (integer value)
918#large_ops_number = 0
Sean Daguefc691e32014-01-03 08:51:54 -0500919
Matthew Treinish3d468112013-10-24 21:49:14 +0000920
921[service_available]
922
923#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000924# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000925#
926
Jon Grimm270bd7f2014-08-05 18:11:29 +0000927# Whether or not cinder is expected to be available (boolean value)
928#cinder = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000929
Jon Grimm270bd7f2014-08-05 18:11:29 +0000930# Whether or not neutron is expected to be available (boolean value)
931#neutron = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000932
Matthew Treinishc603d162015-01-05 20:03:40 -0500933# Whether or not glance is expected to be available (boolean value)
934#glance = true
935
936# Whether or not swift is expected to be available (boolean value)
937#swift = true
938
Jon Grimm270bd7f2014-08-05 18:11:29 +0000939# Whether or not nova is expected to be available (boolean value)
940#nova = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000941
Matthew Treinishc603d162015-01-05 20:03:40 -0500942# Whether or not Heat is expected to be available (boolean value)
943#heat = false
944
945# Whether or not Ceilometer is expected to be available (boolean
946# value)
947#ceilometer = true
948
949# Whether or not Horizon is expected to be available (boolean value)
950#horizon = true
951
Jon Grimm270bd7f2014-08-05 18:11:29 +0000952# Whether or not Sahara is expected to be available (boolean value)
953#sahara = false
Matthew Treinishe3d26142013-11-26 19:14:58 +0000954
Matthew Treinishc603d162015-01-05 20:03:40 -0500955# Whether or not Ironic is expected to be available (boolean value)
956#ironic = false
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300957
Jon Grimm270bd7f2014-08-05 18:11:29 +0000958# Whether or not Trove is expected to be available (boolean value)
959#trove = false
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800960
Jon Grimm270bd7f2014-08-05 18:11:29 +0000961# Whether or not Zaqar is expected to be available (boolean value)
962#zaqar = false
Malini Kamalambal6e7b3b82014-02-06 06:49:04 -0500963
Matthew Treinish3d468112013-10-24 21:49:14 +0000964
Sean Daguefc691e32014-01-03 08:51:54 -0500965[stress]
966
967#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000968# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500969#
970
Matthew Treinishc603d162015-01-05 20:03:40 -0500971# Directory containing log files on the compute nodes (string value)
972#nova_logdir = <None>
973
974# Maximum number of instances to create during test. (integer value)
975#max_instances = 16
976
Jon Grimm270bd7f2014-08-05 18:11:29 +0000977# Controller host. (string value)
978#controller = <None>
Sean Daguefc691e32014-01-03 08:51:54 -0500979
Matthew Treinishc603d162015-01-05 20:03:40 -0500980# Controller host. (string value)
981#target_controller = <None>
982
983# ssh user. (string value)
984#target_ssh_user = <None>
985
986# Path to private key. (string value)
987#target_private_key_path = <None>
988
989# regexp for list of log files. (string value)
990#target_logfiles = <None>
991
992# time (in seconds) between log file error checks. (integer value)
993#log_check_interval = 60
994
Jon Grimm270bd7f2014-08-05 18:11:29 +0000995# The number of threads created while stress test. (integer value)
996#default_thread_number_per_action = 4
997
Jon Grimm270bd7f2014-08-05 18:11:29 +0000998# Prevent the cleaning (tearDownClass()) between each stress test run
999# if an exception occurs during this run. (boolean value)
1000#leave_dirty_stack = false
1001
Matthew Treinishc603d162015-01-05 20:03:40 -05001002# Allows a full cleaning process after a stress test. Caution : this
1003# cleanup will remove every objects of every tenant. (boolean value)
1004#full_clean_stack = false
Julien Leloupa5ee5422014-02-13 14:29:02 +01001005
Sean Daguefc691e32014-01-03 08:51:54 -05001006
1007[telemetry]
1008
1009#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001010# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001011#
1012
1013# Catalog type of the Telemetry service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001014#catalog_type = metering
Sean Daguefc691e32014-01-03 08:51:54 -05001015
Jon Grimm270bd7f2014-08-05 18:11:29 +00001016# The endpoint type to use for the telemetry service. (string value)
1017#endpoint_type = publicURL
1018
1019# This variable is used as flag to enable notification tests (boolean
JordanPfc62c902014-02-26 14:47:28 +00001020# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001021#too_slow_to_test = true
Vadim Rovachev7bcea352013-12-26 15:56:17 +04001022
Sean Daguefc691e32014-01-03 08:51:54 -05001023
1024[volume]
1025
1026#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001027# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001028#
1029
Jon Grimm270bd7f2014-08-05 18:11:29 +00001030# Time in seconds between volume availability checks. (integer value)
1031#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -05001032
Eric Harney9b1f89c2014-10-14 14:40:19 -04001033# Timeout in seconds to wait for a volume to become available.
Sean Daguefc691e32014-01-03 08:51:54 -05001034# (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001035#build_timeout = 300
Sean Daguefc691e32014-01-03 08:51:54 -05001036
1037# Catalog type of the Volume Service (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001038#catalog_type = volume
1039
Sean Daguefc691e32014-01-03 08:51:54 -05001040# The volume region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +00001041# identity.region is used instead. If no such region is found in the
1042# service catalog, the first found one is used. (string value)
1043#region =
1044
Matthew Treinishc603d162015-01-05 20:03:40 -05001045# The endpoint type to use for the volume service. (string value)
1046#endpoint_type = publicURL
1047
1048# Name of the backend1 (must be declared in cinder.conf) (string
1049# value)
1050#backend1_name = BACKEND_1
1051
1052# Name of the backend2 (must be declared in cinder.conf) (string
1053# value)
1054#backend2_name = BACKEND_2
1055
Jon Grimm270bd7f2014-08-05 18:11:29 +00001056# Backend protocol to target when creating volume types (string value)
1057#storage_protocol = iSCSI
1058
1059# Backend vendor to target when creating volume types (string value)
1060#vendor_name = Open Source
1061
Matthew Treinishc603d162015-01-05 20:03:40 -05001062# Disk format to use when copying a volume to image (string value)
1063#disk_format = raw
1064
Jon Grimm270bd7f2014-08-05 18:11:29 +00001065# Default size in GB for volumes created by volumes tests (integer
Sean Daguefc691e32014-01-03 08:51:54 -05001066# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001067#volume_size = 1
Jerry Cai9733d0e2014-03-19 15:50:49 +08001068
Sean Daguefc691e32014-01-03 08:51:54 -05001069
1070[volume-feature-enabled]
1071
1072#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001073# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001074#
1075
Matthew Treinishc603d162015-01-05 20:03:40 -05001076# Runs Cinder multi-backend test (requires 2 backends) (boolean value)
1077#multi_backend = false
1078
1079# Runs Cinder volumes backup test (boolean value)
1080#backup = true
1081
1082# Runs Cinder volume snapshot test (boolean value)
1083#snapshot = true
1084
Jon Grimm270bd7f2014-08-05 18:11:29 +00001085# A list of enabled volume extensions with a special entry all which
1086# indicates every extension is enabled. Empty list indicates all
1087# extensions are disabled (list value)
1088#api_extensions = all
Zhi Kun Liude25c022014-02-14 13:25:19 +08001089
Sean Daguefc691e32014-01-03 08:51:54 -05001090# Is the v1 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001091#api_v1 = true
Sean Daguefc691e32014-01-03 08:51:54 -05001092
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +08001093# Is the v2 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001094#api_v2 = true