blob: 949302f4e3aaedeb1462cc53e64a0cf9fcf6c145 [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 Treinish167b2be2015-01-15 17:20:27 -0500138# Roles to assign to all users created by tempest (list value)
139#tempest_roles =
140
Matthew Treinishc791ac42014-07-16 09:15:23 -0400141
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300142[baremetal]
143
144#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000145# From tempest.config
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300146#
147
Matthew Treinishc603d162015-01-05 20:03:40 -0500148# Catalog type of the baremetal provisioning service (string value)
149#catalog_type = baremetal
150
151# Whether the Ironic nova-compute driver is enabled (boolean value)
152#driver_enabled = false
153
154# Driver name which Ironic uses (string value)
155#driver = fake
156
157# The endpoint type to use for the baremetal provisioning service
158# (string value)
159#endpoint_type = publicURL
160
Jon Grimm270bd7f2014-08-05 18:11:29 +0000161# Timeout for Ironic node to completely provision (integer value)
162#active_timeout = 300
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300163
Jon Grimm270bd7f2014-08-05 18:11:29 +0000164# Timeout for association of Nova instance and Ironic node (integer
Adam Gandelman4a48a602014-03-20 18:23:18 -0700165# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000166#association_timeout = 30
167
Adam Gandelman4a48a602014-03-20 18:23:18 -0700168# Timeout for Ironic power transitions. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000169#power_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700170
171# Timeout for unprovisioning an Ironic node. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000172#unprovision_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700173
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300174
Sean Daguefc691e32014-01-03 08:51:54 -0500175[boto]
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400176
177#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000178# From tempest.config
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400179#
180
Matthew Treinishc603d162015-01-05 20:03:40 -0500181# EC2 URL (string value)
182#ec2_url = http://localhost:8773/services/Cloud
Sean Daguefc691e32014-01-03 08:51:54 -0500183
Matthew Treinishc603d162015-01-05 20:03:40 -0500184# S3 URL (string value)
185#s3_url = http://localhost:8080
Sean Daguefc691e32014-01-03 08:51:54 -0500186
Jon Grimm270bd7f2014-08-05 18:11:29 +0000187# AWS Secret Key (string value)
188#aws_secret = <None>
Sean Daguefc691e32014-01-03 08:51:54 -0500189
Matthew Treinishc603d162015-01-05 20:03:40 -0500190# AWS Access Key (string value)
191#aws_access = <None>
192
Jon Grimm270bd7f2014-08-05 18:11:29 +0000193# AWS Zone for EC2 tests (string value)
194#aws_zone = nova
Sean Daguefc691e32014-01-03 08:51:54 -0500195
Jon Grimm270bd7f2014-08-05 18:11:29 +0000196# S3 Materials Path (string value)
197#s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0
198
Matthew Treinishc603d162015-01-05 20:03:40 -0500199# ARI Ramdisk Image manifest (string value)
200#ari_manifest = cirros-0.3.0-x86_64-initrd.manifest.xml
201
202# AMI Machine Image manifest (string value)
203#ami_manifest = cirros-0.3.0-x86_64-blank.img.manifest.xml
204
205# AKI Kernel Image manifest (string value)
206#aki_manifest = cirros-0.3.0-x86_64-vmlinuz.manifest.xml
207
208# Instance type (string value)
209#instance_type = m1.tiny
210
211# boto Http socket timeout (integer value)
212#http_socket_timeout = 3
213
214# boto num_retries on error (integer value)
215#num_retries = 1
216
217# Status Change Timeout (integer value)
218#build_timeout = 60
219
220# Status Change Test Interval (integer value)
221#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -0500222
223
224[cli]
225
226#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000227# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500228#
229
Jon Grimm270bd7f2014-08-05 18:11:29 +0000230# enable cli tests (boolean value)
231#enabled = true
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400232
Matthew Treinishc603d162015-01-05 20:03:40 -0500233# directory where python client binaries are located (string value)
234#cli_dir = /usr/local/bin
235
Sean Dague44b24682014-02-20 19:08:24 -0500236# Whether the tempest run location has access to the *-manage
Jon Grimm270bd7f2014-08-05 18:11:29 +0000237# commands. In a pure blackbox environment it will not. (boolean
238# value)
239#has_manage = true
Sean Dague44b24682014-02-20 19:08:24 -0500240
Sean Daguefc691e32014-01-03 08:51:54 -0500241# Number of seconds to wait on a CLI timeout (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000242#timeout = 15
Arata Notsu8f440392013-09-13 16:14:20 +0900243
Sean Dague83401992013-05-06 17:46:36 -0400244
Matthew Treinish3d468112013-10-24 21:49:14 +0000245[compute]
246
247#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000248# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000249#
250
Matthew Treinishafcb6b42014-05-27 13:50:02 -0400251# Valid primary image reference to be used in tests. This is a
252# required option (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000253#image_ref = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000254
Jon Grimm270bd7f2014-08-05 18:11:29 +0000255# Valid secondary image reference to be used in tests. This is a
256# required option, but if only one image is available duplicate the
257# value of image_ref above (string value)
258#image_ref_alt = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000259
Matthew Treinishc603d162015-01-05 20:03:40 -0500260# Valid primary flavor to use in tests. (string value)
261#flavor_ref = 1
262
263# Valid secondary flavor to be used in tests. (string value)
264#flavor_ref_alt = 2
Matthew Treinish3d468112013-10-24 21:49:14 +0000265
Jon Grimm270bd7f2014-08-05 18:11:29 +0000266# User name used to authenticate to an instance. (string value)
267#image_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000268
Matthew Treinishc603d162015-01-05 20:03:40 -0500269# Password used to authenticate to an instance. (string value)
270#image_ssh_password = password
Matthew Treinish3d468112013-10-24 21:49:14 +0000271
Matthew Treinishc603d162015-01-05 20:03:40 -0500272# User name used to authenticate to an instance using the alternate
273# image. (string value)
274#image_alt_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000275
Matthew Treinishc603d162015-01-05 20:03:40 -0500276# Password used to authenticate to an instance using the alternate
277# image. (string value)
278#image_alt_ssh_password = password
Jon Grimm270bd7f2014-08-05 18:11:29 +0000279
Matthew Treinishc603d162015-01-05 20:03:40 -0500280# Time in seconds between build status checks. (integer value)
281#build_interval = 1
Jon Grimm270bd7f2014-08-05 18:11:29 +0000282
Matthew Treinishc603d162015-01-05 20:03:40 -0500283# Timeout in seconds to wait for an instance to build. Other services
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200284# that do not define build_timeout will inherit this value. (integer
285# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500286#build_timeout = 300
Jon Grimm270bd7f2014-08-05 18:11:29 +0000287
288# Should the tests ssh to instances? (boolean value)
289#run_ssh = false
290
Jon Grimm270bd7f2014-08-05 18:11:29 +0000291# Auth method used for authenticate to the instance. Valid choices
292# are: keypair, configured, adminpass. keypair: start the servers with
293# an ssh keypair. configured: use the configured user and password.
294# adminpass: use the injected adminPass. disabled: avoid using ssh
295# when it is an option. (string value)
296#ssh_auth_method = keypair
297
Jon Grimm270bd7f2014-08-05 18:11:29 +0000298# How to connect to the instance? fixed: using the first ip belongs
299# the fixed network floating: creating and using a floating ip (string
JordanP5d29b2c2013-12-18 13:56:03 +0000300# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000301#ssh_connect_method = fixed
JordanP5d29b2c2013-12-18 13:56:03 +0000302
Matthew Treinishc603d162015-01-05 20:03:40 -0500303# User name used to authenticate to an instance. (string value)
304#ssh_user = root
305
306# Timeout in seconds to wait for ping to succeed. (integer value)
307#ping_timeout = 120
308
Jon Grimm270bd7f2014-08-05 18:11:29 +0000309# Timeout in seconds to wait for authentication to succeed. (integer
310# value)
311#ssh_timeout = 300
Matthew Treinish3d468112013-10-24 21:49:14 +0000312
Matthew Treinishc603d162015-01-05 20:03:40 -0500313# Additional wait time for clean state, when there is no OS-EXT-STS
314# extension available (integer value)
315#ready_wait = 0
316
317# Timeout in seconds to wait for output from ssh channel. (integer
318# value)
319#ssh_channel_timeout = 60
320
321# Name of the fixed network that is visible to all test tenants.
322# (string value)
323#fixed_network_name = private
324
325# Network used for SSH connections. Ignored if
326# use_floatingip_for_ssh=true or run_ssh=false. (string value)
327#network_for_ssh = public
328
329# IP version used for SSH connections. (integer value)
330#ip_version_for_ssh = 4
Jon Grimm270bd7f2014-08-05 18:11:29 +0000331
332# Does SSH use Floating IPs? (boolean value)
333#use_floatingip_for_ssh = true
334
Matthew Treinishc603d162015-01-05 20:03:40 -0500335# Catalog type of the Compute service. (string value)
336#catalog_type = compute
337
338# The compute region name to use. If empty, the value of
339# identity.region is used instead. If no such region is found in the
340# service catalog, the first found one is used. (string value)
341#region =
342
343# The endpoint type to use for the compute service. (string value)
344#endpoint_type = publicURL
345
346# Path to a private key file for SSH access to remote hosts (string
347# value)
348#path_to_private_key = <None>
349
Jon Grimm270bd7f2014-08-05 18:11:29 +0000350# Expected device name when a volume is attached to an instance
Matthew Treinish3d468112013-10-24 21:49:14 +0000351# (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000352#volume_device_name = vdb
Sean Dague82190852014-05-24 07:42:59 -0400353
Matthew Treinishc603d162015-01-05 20:03:40 -0500354# Time in seconds before a shelved instance is eligible for removing
355# from a host. -1 never offload, 0 offload when shelved. This time
356# should be the same as the time of nova.conf, and some tests will run
357# for as long as the time. (integer value)
358#shelved_offload_time = 0
359
360# Unallocated floating IP range, which will be used to test the
361# floating IP bulk feature for CRUD operation. This block must not
362# overlap an existing floating IP pool. (string value)
363#floating_ip_range = 10.0.0.0/29
364
Sean Daguefc691e32014-01-03 08:51:54 -0500365
Sean Daguefc691e32014-01-03 08:51:54 -0500366[compute-feature-enabled]
Matthew Treinish3d468112013-10-24 21:49:14 +0000367
368#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000369# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000370#
371
Matthew Treinishc603d162015-01-05 20:03:40 -0500372# If false, skip disk config tests (boolean value)
373#disk_config = true
374
Jon Grimm270bd7f2014-08-05 18:11:29 +0000375# A list of enabled compute extensions with a special entry all which
376# indicates every extension is enabled. Each extension should be
377# specified with alias name. Empty list indicates all extensions are
378# disabled (list value)
379#api_extensions = all
Matthew Treinish3d468112013-10-24 21:49:14 +0000380
Jon Grimm270bd7f2014-08-05 18:11:29 +0000381# Does the test environment support changing the admin password?
382# (boolean value)
383#change_password = false
384
385# Does the test environment support obtaining instance serial console
386# output? (boolean value)
387#console_output = true
Matthew Treinish20866a22014-06-12 14:58:36 -0400388
Matthew Treinishc603d162015-01-05 20:03:40 -0500389# Does the test environment support resizing? (boolean value)
390#resize = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000391
Matthew Treinishc603d162015-01-05 20:03:40 -0500392# Does the test environment support pausing? (boolean value)
393#pause = true
Ghanshyam9c2e50d2014-07-22 21:32:05 +0900394
Matthew Treinishc603d162015-01-05 20:03:40 -0500395# Does the test environment support shelving/unshelving? (boolean
396# value)
397#shelve = true
398
399# Does the test environment support suspend/resume? (boolean value)
400#suspend = true
Adam Gandelman7186f7a2014-07-23 09:28:56 -0400401
Jon Grimm270bd7f2014-08-05 18:11:29 +0000402# Does the test environment support live migration available? (boolean
403# value)
Joe Gordon31a139a2014-11-17 16:39:04 -0800404#live_migration = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000405
Matthew Treinishc603d162015-01-05 20:03:40 -0500406# Does the test environment use block devices for live migration
407# (boolean value)
408#block_migration_for_live_migration = false
409
410# Does the test environment block migration support cinder iSCSI
411# volumes (boolean value)
412#block_migrate_cinder_iscsi = false
413
414# Enable VNC console. This configuration value should be same as
415# [nova.vnc]->vnc_enabled in nova.conf (boolean value)
416#vnc_console = false
417
418# Enable Spice console. This configuration value should be same as
419# [nova.spice]->enabled in nova.conf (boolean value)
420#spice_console = false
Jon Grimm270bd7f2014-08-05 18:11:29 +0000421
422# Enable RDP console. This configuration value should be same as
423# [nova.rdp]->enabled in nova.conf (boolean value)
424#rdp_console = false
425
426# Does the test environment support instance rescue mode? (boolean
427# value)
428#rescue = true
429
Matthew Treinishc603d162015-01-05 20:03:40 -0500430# Enables returning of the instance password by the relevant server
431# API calls such as create, rebuild or rescue. (boolean value)
432#enable_instance_password = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000433
Matthew Treinishc603d162015-01-05 20:03:40 -0500434# Does the test environment support dynamic network interface
435# attachment? (boolean value)
436#interface_attach = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000437
438# Does the test environment support creating snapshot images of
439# running instances? (boolean value)
440#snapshot = true
441
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100442
Julie Pichond1017642013-07-24 16:37:23 +0100443[dashboard]
Julie Pichond1017642013-07-24 16:37:23 +0100444
Matthew Treinish3d468112013-10-24 21:49:14 +0000445#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000446# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000447#
Julie Pichond1017642013-07-24 16:37:23 +0100448
Matthew Treinish3d468112013-10-24 21:49:14 +0000449# Where the dashboard can be found (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000450#dashboard_url = http://localhost/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900451
Matthew Treinish3d468112013-10-24 21:49:14 +0000452# Login page for the dashboard (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000453#login_url = http://localhost/auth/login/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900454
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900455
Sean Daguefc691e32014-01-03 08:51:54 -0500456[data_processing]
457
458#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000459# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500460#
461
462# Catalog type of the data processing service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000463#catalog_type = data_processing
Sean Daguefc691e32014-01-03 08:51:54 -0500464
Jon Grimm270bd7f2014-08-05 18:11:29 +0000465# The endpoint type to use for the data processing service. (string
466# value)
467#endpoint_type = publicURL
JordanPfc62c902014-02-26 14:47:28 +0000468
Sean Daguefc691e32014-01-03 08:51:54 -0500469
Luigi Toscano14d172d2015-01-23 16:37:47 +0100470[data_processing-feature-enabled]
471
472#
473# From tempest.config
474#
475
476# List of enabled data processing plugins (list value)
477#plugins = vanilla,hdp
478
479
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800480[database]
481
482#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000483# From tempest.config
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800484#
485
486# Catalog type of the Database service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000487#catalog_type = database
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800488
Jon Grimm270bd7f2014-08-05 18:11:29 +0000489# Valid primary flavor to use in database tests. (string value)
490#db_flavor_ref = 1
Peter Stachowski320f9c72014-04-21 16:13:23 -0400491
Matthew Treinishc603d162015-01-05 20:03:40 -0500492# Current database version to use in database tests. (string value)
493#db_current_version = v1.0
494
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800495
Sean Daguefc691e32014-01-03 08:51:54 -0500496[debug]
497
498#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000499# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500500#
501
Jon Grimm270bd7f2014-08-05 18:11:29 +0000502# A regex to determine which requests should be traced. This is a
503# regex to match the caller for rest client requests to be able to
504# selectively trace calls out of specific classes and methods. It
505# largely exists for test development, and is not expected to be used
506# in a real deploy of tempest. This will be matched against the
507# discovered ClassName:method in the test environment. Expected
508# values for this field are: * ClassName:test_method_name - traces
509# one test_method * ClassName:setUp(Class) - traces specific setup
510# functions * ClassName:tearDown(Class) - traces specific teardown
511# functions * ClassName:_run_cleanups - traces the cleanup functions
512# If nothing is specified, this feature is not enabled. To trace
513# everything specify .* as the regex. (string value)
514#trace_requests =
Sean Daguec522c092014-03-24 10:43:22 -0400515
Sean Daguefc691e32014-01-03 08:51:54 -0500516
517[identity]
518
519#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000520# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500521#
522
Jon Grimm270bd7f2014-08-05 18:11:29 +0000523# Catalog type of the Identity service. (string value)
524#catalog_type = identity
525
526# Set to True if using self-signed SSL certificates. (boolean value)
527#disable_ssl_certificate_validation = false
528
Matthew Treinishc603d162015-01-05 20:03:40 -0500529# Specify a CA bundle file to use in verifying a TLS (https) server
530# certificate. (string value)
531#ca_certificates_file = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +0000532
533# Full URI of the OpenStack Identity API (Keystone), v2 (string value)
534#uri = <None>
535
536# Full URI of the OpenStack Identity API (Keystone), v3 (string value)
537#uri_v3 = <None>
538
Matthew Treinishc603d162015-01-05 20:03:40 -0500539# Identity API version to be used for authentication for API tests.
540# (string value)
541#auth_version = v2
542
543# The identity region name to use. Also used as the other services'
544# region name unless they are set explicitly. If no such region is
545# found in the service catalog, the first found one is used. (string
546# value)
547#region = RegionOne
548
549# The endpoint type to use for the identity service. (string value)
550#endpoint_type = publicURL
551
Jon Grimm270bd7f2014-08-05 18:11:29 +0000552# Username to use for Nova API requests. (string value)
553#username = <None>
Andrea Frittolib1b04bb2014-04-06 11:57:07 +0100554
Matthew Treinishc603d162015-01-05 20:03:40 -0500555# Tenant name to use for Nova API requests. (string value)
556#tenant_name = <None>
557
558# Role required to administrate keystone. (string value)
559#admin_role = admin
560
561# API key to use when authenticating. (string value)
562#password = <None>
563
564# Domain name for authentication (Keystone V3).The same domain applies
565# to user and project (string value)
566#domain_name = <None>
567
568# Username of alternate user to use for Nova API requests. (string
569# value)
570#alt_username = <None>
571
572# Alternate user's Tenant name to use for Nova API requests. (string
573# value)
574#alt_tenant_name = <None>
575
576# API key to use when authenticating as alternate user. (string value)
577#alt_password = <None>
578
579# Alternate domain name for authentication (Keystone V3).The same
580# domain applies to user and project (string value)
581#alt_domain_name = <None>
582
583# Administrative Username to use for Keystone API requests. (string
584# value)
585#admin_username = <None>
586
587# Administrative Tenant name to use for Keystone API requests. (string
588# value)
589#admin_tenant_name = <None>
590
591# API key to use when authenticating as admin. (string value)
592#admin_password = <None>
593
594# Admin domain name for authentication (Keystone V3).The same domain
595# applies to user and project (string value)
596#admin_domain_name = <None>
597
Sean Daguefc691e32014-01-03 08:51:54 -0500598
Matthew Treinishd5021a72014-01-09 18:42:51 +0000599[identity-feature-enabled]
600
601#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000602# From tempest.config
Matthew Treinishd5021a72014-01-09 18:42:51 +0000603#
604
Matthew Treinishc603d162015-01-05 20:03:40 -0500605# Does the identity service have delegation and impersonation enabled
606# (boolean value)
607#trust = true
608
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000609# Is the v2 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000610#api_v2 = true
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000611
612# Is the v3 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000613#api_v3 = true
614
Matthew Treinishd5021a72014-01-09 18:42:51 +0000615
Sean Daguefc691e32014-01-03 08:51:54 -0500616[image]
617
618#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000619# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500620#
621
622# Catalog type of the Image service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000623#catalog_type = image
Sean Daguefc691e32014-01-03 08:51:54 -0500624
Matthew Treinishc603d162015-01-05 20:03:40 -0500625# The image region name to use. If empty, the value of identity.region
626# is used instead. If no such region is found in the service catalog,
627# the first found one is used. (string value)
628#region =
629
Jon Grimm270bd7f2014-08-05 18:11:29 +0000630# The endpoint type to use for the image service. (string value)
631#endpoint_type = publicURL
JordanP5d29b2c2013-12-18 13:56:03 +0000632
Sean Daguefc691e32014-01-03 08:51:54 -0500633# http accessible image (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000634#http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
635
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200636# Timeout in seconds to wait for an image to become available.
637# (integer value)
638#build_timeout = 300
639
640# Time in seconds between image operation status checks. (integer
641# value)
642#build_interval = 1
643
Sean Daguefc691e32014-01-03 08:51:54 -0500644
645[image-feature-enabled]
646
647#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000648# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500649#
650
Jon Grimm270bd7f2014-08-05 18:11:29 +0000651# Is the v2 image API enabled (boolean value)
652#api_v2 = true
Sean Daguefc691e32014-01-03 08:51:54 -0500653
Matthew Treinishc603d162015-01-05 20:03:40 -0500654# Is the v1 image API enabled (boolean value)
655#api_v1 = true
656
Sean Daguefc691e32014-01-03 08:51:54 -0500657
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000658[input-scenario]
659
660#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000661# From tempest.config
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000662#
663
Jon Grimm270bd7f2014-08-05 18:11:29 +0000664# Matching images become parameters for scenario tests (string value)
665#image_regex = ^cirros-0.3.1-x86_64-uec$
666
Matthew Treinishc603d162015-01-05 20:03:40 -0500667# Matching flavors become parameters for scenario tests (string value)
668#flavor_regex = ^m1.nano$
669
Jon Grimm270bd7f2014-08-05 18:11:29 +0000670# SSH verification in tests is skippedfor matching images (string
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000671# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000672#non_ssh_image_regex = ^.*[Ww]in.*$
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000673
Jon Grimm270bd7f2014-08-05 18:11:29 +0000674# List of user mapped to regex to matching image names. (string value)
675#ssh_user_regex = [["^.*[Cc]irros.*$", "root"]]
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000676
677
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300678[messaging]
679
680#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000681# From tempest.config
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300682#
683
684# Catalog type of the Messaging service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000685#catalog_type = messaging
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300686
Matthew Treinishc603d162015-01-05 20:03:40 -0500687# The maximum number of queue records per page when listing queues
688# (integer value)
689#max_queues_per_page = 20
Jon Grimm270bd7f2014-08-05 18:11:29 +0000690
Matthew Treinishc603d162015-01-05 20:03:40 -0500691# The maximum metadata size for a queue (integer value)
692#max_queue_metadata = 65536
Jon Grimm270bd7f2014-08-05 18:11:29 +0000693
694# The maximum number of queue message per page when listing (or)
695# posting messages (integer value)
696#max_messages_per_page = 20
697
Matthew Treinishc603d162015-01-05 20:03:40 -0500698# The maximum size of a message body (integer value)
699#max_message_size = 262144
Jon Grimm270bd7f2014-08-05 18:11:29 +0000700
Matthew Treinishc603d162015-01-05 20:03:40 -0500701# The maximum number of messages per claim (integer value)
702#max_messages_per_claim = 20
703
704# The maximum ttl for a message (integer value)
705#max_message_ttl = 1209600
706
707# The maximum ttl for a claim (integer value)
708#max_claim_ttl = 43200
709
710# The maximum grace period for a claim (integer value)
711#max_claim_grace = 43200
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300712
713
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100714[negative]
715
716#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000717# From tempest.config
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100718#
719
720# Test generator class for all negative tests (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000721#test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100722
723
Sean Daguefc691e32014-01-03 08:51:54 -0500724[network]
725
726#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000727# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500728#
729
730# Catalog type of the Neutron service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000731#catalog_type = network
732
Sean Daguefc691e32014-01-03 08:51:54 -0500733# The network region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +0000734# identity.region is used instead. If no such region is found in the
735# service catalog, the first found one is used. (string value)
736#region =
Sean Daguefc691e32014-01-03 08:51:54 -0500737
Matthew Treinishc603d162015-01-05 20:03:40 -0500738# The endpoint type to use for the network service. (string value)
739#endpoint_type = publicURL
740
Jon Grimm270bd7f2014-08-05 18:11:29 +0000741# The cidr block to allocate tenant ipv4 subnets from (string value)
742#tenant_network_cidr = 10.100.0.0/16
Sean Daguefc691e32014-01-03 08:51:54 -0500743
Henry Gessauffda37a2014-01-16 11:17:55 -0500744# The mask bits for tenant ipv4 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000745#tenant_network_mask_bits = 28
Sean Daguefc691e32014-01-03 08:51:54 -0500746
Jon Grimm270bd7f2014-08-05 18:11:29 +0000747# The cidr block to allocate tenant ipv6 subnets from (string value)
748#tenant_network_v6_cidr = 2003::/48
Henry Gessauffda37a2014-01-16 11:17:55 -0500749
750# The mask bits for tenant ipv6 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000751#tenant_network_v6_mask_bits = 64
Henry Gessauffda37a2014-01-16 11:17:55 -0500752
Jon Grimm270bd7f2014-08-05 18:11:29 +0000753# Whether tenant network connectivity should be evaluated directly
754# (boolean value)
755#tenant_networks_reachable = false
Attila Fazekas640392b2014-06-12 15:58:10 +0200756
Matthew Treinishc603d162015-01-05 20:03:40 -0500757# Id of the public network that provides external connectivity (string
758# value)
759#public_network_id =
760
761# Id of the public router that provides external connectivity. This
762# should only be used when Neutron's 'allow_overlapping_ips' is set to
763# 'False' in neutron.conf. usually not needed past 'Grizzly' release
764# (string value)
765#public_router_id =
766
767# Timeout in seconds to wait for network operation to complete.
768# (integer value)
769#build_timeout = 300
770
771# Time in seconds between network operation status checks. (integer
772# value)
773#build_interval = 1
774
775# List of dns servers which should be used for subnet creation (list
776# value)
777#dns_servers = 8.8.8.8,8.8.4.4
778
Sean Daguefc691e32014-01-03 08:51:54 -0500779
780[network-feature-enabled]
781
782#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000783# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500784#
785
Matthew Treinishc603d162015-01-05 20:03:40 -0500786# Allow the execution of IPv6 tests (boolean value)
787#ipv6 = true
788
Jon Grimm270bd7f2014-08-05 18:11:29 +0000789# A list of enabled network extensions with a special entry all which
790# indicates every extension is enabled. Empty list indicates all
791# extensions are disabled (list value)
792#api_extensions = all
793
Jon Grimm270bd7f2014-08-05 18:11:29 +0000794# Allow the execution of IPv6 subnet tests that use the extended IPv6
795# attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
796#ipv6_subnet_attributes = false
Sean M. Collinsdd27a4d2014-05-13 10:33:15 -0400797
Sean Daguefc691e32014-01-03 08:51:54 -0500798
799[object-storage]
800
801#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000802# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500803#
804
805# Catalog type of the Object-Storage service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000806#catalog_type = object-store
Sean Daguefc691e32014-01-03 08:51:54 -0500807
Matthew Treinishc603d162015-01-05 20:03:40 -0500808# The object-storage region name to use. If empty, the value of
809# identity.region is used instead. If no such region is found in the
810# service catalog, the first found one is used. (string value)
811#region =
JordanP5d29b2c2013-12-18 13:56:03 +0000812
Jon Grimm270bd7f2014-08-05 18:11:29 +0000813# The endpoint type to use for the object-store service. (string
814# value)
815#endpoint_type = publicURL
Sean Daguefc691e32014-01-03 08:51:54 -0500816
Matthew Treinishc603d162015-01-05 20:03:40 -0500817# Number of seconds to time on waiting for a container to container
818# synchronization complete. (integer value)
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900819#container_sync_timeout = 600
Matthew Treinishc603d162015-01-05 20:03:40 -0500820
821# Number of seconds to wait while looping to check the status of a
822# container to container synchronization (integer value)
823#container_sync_interval = 5
824
Jon Grimm270bd7f2014-08-05 18:11:29 +0000825# Role to add to users created for swift tests to enable creating
826# containers (string value)
827#operator_role = Member
Sean Daguefc691e32014-01-03 08:51:54 -0500828
Matthew Treinish998c91d2014-03-01 12:39:49 -0500829# User role that has reseller admin (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000830#reseller_admin_role = ResellerAdmin
Matthew Treinish998c91d2014-03-01 12:39:49 -0500831
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900832# Name of sync realm. A sync realm is a set of clusters that have
833# agreed to allow container syncing with each other. Set the same
834# realm name as Swift's container-sync-realms.conf (string value)
835#realm_name = realm1
836
837# One name of cluster which is set in the realm whose name is set in
838# 'realm_name' item in this file. Set the same cluster name as Swift's
839# container-sync-realms.conf (string value)
840#cluster_name = name1
841
Sean Daguefc691e32014-01-03 08:51:54 -0500842
843[object-storage-feature-enabled]
844
845#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000846# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500847#
848
Jon Grimm270bd7f2014-08-05 18:11:29 +0000849# A list of the enabled optional discoverable apis. A single entry,
850# all, indicates that all of these features are expected to be enabled
851# (list value)
852#discoverable_apis = all
853
Matthew Treinishc603d162015-01-05 20:03:40 -0500854# Execute (old style) container-sync tests (boolean value)
855#container_sync = true
856
Jon Grimm270bd7f2014-08-05 18:11:29 +0000857# Execute object-versioning tests (boolean value)
858#object_versioning = true
Daisuke Morita20a183f2014-08-25 14:43:36 +0900859
Matthew Treinishc603d162015-01-05 20:03:40 -0500860# Execute discoverability tests (boolean value)
861#discoverability = true
862
Sean Daguefc691e32014-01-03 08:51:54 -0500863
Matthew Treinish3d468112013-10-24 21:49:14 +0000864[orchestration]
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900865
Matthew Treinish3d468112013-10-24 21:49:14 +0000866#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000867# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000868#
Attila Fazekas86950732013-06-08 09:33:08 +0200869
Matthew Treinishc603d162015-01-05 20:03:40 -0500870# Catalog type of the Orchestration service. (string value)
871#catalog_type = orchestration
872
873# The orchestration region name to use. If empty, the value of
874# identity.region is used instead. If no such region is found in the
875# service catalog, the first found one is used. (string value)
876#region =
877
878# The endpoint type to use for the orchestration service. (string
879# value)
880#endpoint_type = publicURL
881
Jon Grimm270bd7f2014-08-05 18:11:29 +0000882# Time in seconds between build status checks. (integer value)
883#build_interval = 1
884
885# Timeout in seconds to wait for a stack to build. (integer value)
886#build_timeout = 1200
887
Matthew Treinishc603d162015-01-05 20:03:40 -0500888# Instance type for tests. Needs to be big enough for a full OS plus
889# the test workload (string value)
890#instance_type = m1.micro
Jon Grimm270bd7f2014-08-05 18:11:29 +0000891
892# Name of heat-cfntools enabled image to use when launching test
893# instances. (string value)
894#image_ref = <None>
895
Jon Grimm270bd7f2014-08-05 18:11:29 +0000896# Name of existing keypair to launch servers with. (string value)
897#keypair_name = <None>
898
899# Value must match heat configuration of the same name. (integer
900# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500901#max_template_size = 524288
Jon Grimm270bd7f2014-08-05 18:11:29 +0000902
903# Value must match heat configuration of the same name. (integer
904# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500905#max_resources_per_stack = 1000
Steven Hardyfdc6bd72014-03-21 16:56:04 +0000906
Matthew Treinish3d468112013-10-24 21:49:14 +0000907
Sean Daguefc691e32014-01-03 08:51:54 -0500908[scenario]
Matthew Treinish3d468112013-10-24 21:49:14 +0000909
910#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000911# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000912#
913
Matthew Treinishc603d162015-01-05 20:03:40 -0500914# Directory containing image files (string value)
915#img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
916
917# Image file name (string value)
918# Deprecated group/name - [DEFAULT]/qcow2_img_file
919#img_file = cirros-0.3.1-x86_64-disk.img
920
921# Image disk format (string value)
922#img_disk_format = qcow2
923
924# Image container format (string value)
925#img_container_format = bare
Jon Grimm270bd7f2014-08-05 18:11:29 +0000926
927# AMI image file name (string value)
928#ami_img_file = cirros-0.3.1-x86_64-blank.img
929
930# ARI image file name (string value)
931#ari_img_file = cirros-0.3.1-x86_64-initrd
932
Matthew Treinishc603d162015-01-05 20:03:40 -0500933# AKI image file name (string value)
934#aki_img_file = cirros-0.3.1-x86_64-vmlinuz
Jon Grimm270bd7f2014-08-05 18:11:29 +0000935
Matthew Treinishc603d162015-01-05 20:03:40 -0500936# ssh username for the image file (string value)
937#ssh_user = cirros
Alessandro Pilottib7c1daa2014-08-16 14:24:13 +0300938
Jon Grimm270bd7f2014-08-05 18:11:29 +0000939# specifies how many resources to request at once. Used for large
940# operations testing. (integer value)
941#large_ops_number = 0
Sean Daguefc691e32014-01-03 08:51:54 -0500942
Yair Fried413bf2d2014-11-19 17:07:11 +0200943# DHCP client used by images to renew DCHP lease. If left empty,
944# update operation will be skipped. Supported clients: "udhcpc",
945# "dhclient" (string value)
946#dhcp_client = udhcpc
947
Matthew Treinish3d468112013-10-24 21:49:14 +0000948
949[service_available]
950
951#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000952# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000953#
954
Jon Grimm270bd7f2014-08-05 18:11:29 +0000955# Whether or not cinder is expected to be available (boolean value)
956#cinder = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000957
Jon Grimm270bd7f2014-08-05 18:11:29 +0000958# Whether or not neutron is expected to be available (boolean value)
959#neutron = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000960
Matthew Treinishc603d162015-01-05 20:03:40 -0500961# Whether or not glance is expected to be available (boolean value)
962#glance = true
963
964# Whether or not swift is expected to be available (boolean value)
965#swift = true
966
Jon Grimm270bd7f2014-08-05 18:11:29 +0000967# Whether or not nova is expected to be available (boolean value)
968#nova = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000969
Matthew Treinishc603d162015-01-05 20:03:40 -0500970# Whether or not Heat is expected to be available (boolean value)
971#heat = false
972
973# Whether or not Ceilometer is expected to be available (boolean
974# value)
975#ceilometer = true
976
977# Whether or not Horizon is expected to be available (boolean value)
978#horizon = true
979
Jon Grimm270bd7f2014-08-05 18:11:29 +0000980# Whether or not Sahara is expected to be available (boolean value)
981#sahara = false
Matthew Treinishe3d26142013-11-26 19:14:58 +0000982
Matthew Treinishc603d162015-01-05 20:03:40 -0500983# Whether or not Ironic is expected to be available (boolean value)
984#ironic = false
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300985
Jon Grimm270bd7f2014-08-05 18:11:29 +0000986# Whether or not Trove is expected to be available (boolean value)
987#trove = false
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800988
Jon Grimm270bd7f2014-08-05 18:11:29 +0000989# Whether or not Zaqar is expected to be available (boolean value)
990#zaqar = false
Malini Kamalambal6e7b3b82014-02-06 06:49:04 -0500991
Matthew Treinish3d468112013-10-24 21:49:14 +0000992
Sean Daguefc691e32014-01-03 08:51:54 -0500993[stress]
994
995#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000996# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500997#
998
Matthew Treinishc603d162015-01-05 20:03:40 -0500999# Directory containing log files on the compute nodes (string value)
1000#nova_logdir = <None>
1001
1002# Maximum number of instances to create during test. (integer value)
1003#max_instances = 16
1004
Jon Grimm270bd7f2014-08-05 18:11:29 +00001005# Controller host. (string value)
1006#controller = <None>
Sean Daguefc691e32014-01-03 08:51:54 -05001007
Matthew Treinishc603d162015-01-05 20:03:40 -05001008# Controller host. (string value)
1009#target_controller = <None>
1010
1011# ssh user. (string value)
1012#target_ssh_user = <None>
1013
1014# Path to private key. (string value)
1015#target_private_key_path = <None>
1016
1017# regexp for list of log files. (string value)
1018#target_logfiles = <None>
1019
1020# time (in seconds) between log file error checks. (integer value)
1021#log_check_interval = 60
1022
Jon Grimm270bd7f2014-08-05 18:11:29 +00001023# The number of threads created while stress test. (integer value)
1024#default_thread_number_per_action = 4
1025
Jon Grimm270bd7f2014-08-05 18:11:29 +00001026# Prevent the cleaning (tearDownClass()) between each stress test run
1027# if an exception occurs during this run. (boolean value)
1028#leave_dirty_stack = false
1029
Matthew Treinishc603d162015-01-05 20:03:40 -05001030# Allows a full cleaning process after a stress test. Caution : this
1031# cleanup will remove every objects of every tenant. (boolean value)
1032#full_clean_stack = false
Julien Leloupa5ee5422014-02-13 14:29:02 +01001033
Sean Daguefc691e32014-01-03 08:51:54 -05001034
1035[telemetry]
1036
1037#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001038# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001039#
1040
1041# Catalog type of the Telemetry service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001042#catalog_type = metering
Sean Daguefc691e32014-01-03 08:51:54 -05001043
Jon Grimm270bd7f2014-08-05 18:11:29 +00001044# The endpoint type to use for the telemetry service. (string value)
1045#endpoint_type = publicURL
1046
1047# This variable is used as flag to enable notification tests (boolean
JordanPfc62c902014-02-26 14:47:28 +00001048# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001049#too_slow_to_test = true
Vadim Rovachev7bcea352013-12-26 15:56:17 +04001050
Sean Daguefc691e32014-01-03 08:51:54 -05001051
1052[volume]
1053
1054#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001055# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001056#
1057
Jon Grimm270bd7f2014-08-05 18:11:29 +00001058# Time in seconds between volume availability checks. (integer value)
1059#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -05001060
Eric Harney9b1f89c2014-10-14 14:40:19 -04001061# Timeout in seconds to wait for a volume to become available.
Sean Daguefc691e32014-01-03 08:51:54 -05001062# (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001063#build_timeout = 300
Sean Daguefc691e32014-01-03 08:51:54 -05001064
1065# Catalog type of the Volume Service (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001066#catalog_type = volume
1067
Sean Daguefc691e32014-01-03 08:51:54 -05001068# The volume region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +00001069# identity.region is used instead. If no such region is found in the
1070# service catalog, the first found one is used. (string value)
1071#region =
1072
Matthew Treinishc603d162015-01-05 20:03:40 -05001073# The endpoint type to use for the volume service. (string value)
1074#endpoint_type = publicURL
1075
1076# Name of the backend1 (must be declared in cinder.conf) (string
1077# value)
1078#backend1_name = BACKEND_1
1079
1080# Name of the backend2 (must be declared in cinder.conf) (string
1081# value)
1082#backend2_name = BACKEND_2
1083
Jon Grimm270bd7f2014-08-05 18:11:29 +00001084# Backend protocol to target when creating volume types (string value)
1085#storage_protocol = iSCSI
1086
1087# Backend vendor to target when creating volume types (string value)
1088#vendor_name = Open Source
1089
Matthew Treinishc603d162015-01-05 20:03:40 -05001090# Disk format to use when copying a volume to image (string value)
1091#disk_format = raw
1092
Jon Grimm270bd7f2014-08-05 18:11:29 +00001093# Default size in GB for volumes created by volumes tests (integer
Sean Daguefc691e32014-01-03 08:51:54 -05001094# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001095#volume_size = 1
Jerry Cai9733d0e2014-03-19 15:50:49 +08001096
Sean Daguefc691e32014-01-03 08:51:54 -05001097
1098[volume-feature-enabled]
1099
1100#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001101# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001102#
1103
Matthew Treinishc603d162015-01-05 20:03:40 -05001104# Runs Cinder multi-backend test (requires 2 backends) (boolean value)
1105#multi_backend = false
1106
1107# Runs Cinder volumes backup test (boolean value)
1108#backup = true
1109
1110# Runs Cinder volume snapshot test (boolean value)
1111#snapshot = true
1112
Jon Grimm270bd7f2014-08-05 18:11:29 +00001113# A list of enabled volume extensions with a special entry all which
1114# indicates every extension is enabled. Empty list indicates all
1115# extensions are disabled (list value)
1116#api_extensions = all
Zhi Kun Liude25c022014-02-14 13:25:19 +08001117
Sean Daguefc691e32014-01-03 08:51:54 -05001118# Is the v1 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001119#api_v1 = true
Sean Daguefc691e32014-01-03 08:51:54 -05001120
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +08001121# Is the v2 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001122#api_v2 = true