blob: e3eace35502f399a350f2f057cd8e3277e1b1a37 [file] [log] [blame]
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -04001[DEFAULT]
Attila Fazekasbfd96e12013-07-31 17:19:10 +02002
Matthew Treinish3d468112013-10-24 21:49:14 +00003#
Doug Hellmann583ce2c2015-03-11 14:55:46 +00004# From oslo.log
Matthew Treinish3d468112013-10-24 21:49:14 +00005#
6
Jon Grimm270bd7f2014-08-05 18:11:29 +00007# Print debugging output (set logging level to DEBUG instead of
8# default WARNING level). (boolean value)
9#debug = false
Matthew Treinish3d468112013-10-24 21:49:14 +000010
Jon Grimm270bd7f2014-08-05 18:11:29 +000011# Print more verbose output (set logging level to INFO instead of
12# default WARNING level). (boolean value)
13#verbose = false
Matthew Treinish3d468112013-10-24 21:49:14 +000014
Jon Grimm270bd7f2014-08-05 18:11:29 +000015# The name of a logging configuration file. This file is appended to
16# any existing logging configuration files. For details about logging
17# configuration files, see the Python logging module documentation.
Matthew Treinish3d468112013-10-24 21:49:14 +000018# (string value)
Sean Daguefc691e32014-01-03 08:51:54 -050019# Deprecated group/name - [DEFAULT]/log_config
Jon Grimm270bd7f2014-08-05 18:11:29 +000020#log_config_append = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +000021
Jon Grimm270bd7f2014-08-05 18:11:29 +000022# DEPRECATED. A logging.Formatter log message format string which may
23# use any of the available logging.LogRecord attributes. This option
24# is deprecated. Please use logging_context_format_string and
25# logging_default_format_string instead. (string value)
26#log_format = <None>
Sean Dague2bbdf422014-07-11 07:58:33 -040027
Matthew Treinishc603d162015-01-05 20:03:40 -050028# Format string for %%(asctime)s in log records. Default: %(default)s
29# . (string value)
30#log_date_format = %Y-%m-%d %H:%M:%S
31
32# (Optional) Name of log file to output to. If no default is set,
33# logging will go to stdout. (string value)
34# Deprecated group/name - [DEFAULT]/logfile
35#log_file = <None>
36
37# (Optional) The base directory used for relative --log-file paths.
38# (string value)
39# Deprecated group/name - [DEFAULT]/logdir
40#log_dir = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +000041
42# Use syslog for logging. Existing syslog format is DEPRECATED during
David Kranz7068d882015-05-27 16:54:15 -040043# I, and changed in J to honor RFC5424. (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +000044#use_syslog = false
45
46# (Optional) Enables or disables syslog rfc5424 format for logging. If
47# enabled, prefixes the MSG part of the syslog message with APP-NAME
OpenStack Proposal Bot8fba8d32015-05-11 15:52:49 +000048# (RFC5424). The format without the APP-NAME is deprecated in K, and
David Kranz7068d882015-05-27 16:54:15 -040049# will be removed in M, along with this option. (boolean value)
50# This option is deprecated for removal.
51# Its value may be silently ignored in the future.
OpenStack Proposal Bot8fba8d32015-05-11 15:52:49 +000052#use_syslog_rfc_format = true
Jon Grimm270bd7f2014-08-05 18:11:29 +000053
Matthew Treinishc603d162015-01-05 20:03:40 -050054# Syslog facility to receive log lines. (string value)
55#syslog_log_facility = LOG_USER
56
Jon Grimm270bd7f2014-08-05 18:11:29 +000057# Log output to standard error. (boolean value)
58#use_stderr = true
59
Matthew Treinishc603d162015-01-05 20:03:40 -050060# Format string to use for log messages with context. (string value)
61#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
62
63# Format string to use for log messages without context. (string
64# value)
65#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
66
67# Data to append to log format when level is DEBUG. (string value)
68#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
69
70# Prefix each line of exception output with this format. (string
71# value)
David Kranz7068d882015-05-27 16:54:15 -040072#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
Matthew Treinishc603d162015-01-05 20:03:40 -050073
Jon Grimm270bd7f2014-08-05 18:11:29 +000074# List of logger=LEVEL pairs. (list value)
Doug Hellmann583ce2c2015-03-11 14:55:46 +000075#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN
Jon Grimm270bd7f2014-08-05 18:11:29 +000076
Matthew Treinishc603d162015-01-05 20:03:40 -050077# Enables or disables publication of error events. (boolean value)
78#publish_errors = false
79
Jon Grimm270bd7f2014-08-05 18:11:29 +000080# Enables or disables fatal status of deprecations. (boolean value)
81#fatal_deprecations = false
82
83# The format for an instance that is passed with the log message.
84# (string value)
85#instance_format = "[instance: %(uuid)s] "
86
87# The format for an instance UUID that is passed with the log message.
88# (string value)
89#instance_uuid_format = "[instance: %(uuid)s] "
90
David Kranz7068d882015-05-27 16:54:15 -040091# Enables or disables fatal status of deprecations. (boolean value)
92#fatal_deprecations = false
93
Andrea Frittoli (andreaf)8def7ca2015-05-13 14:24:19 +010094#
95# From tempest.config
96#
97
98# Prefix to be added when generating the name for test resources. It
99# can be used to discover all resources associated with a specific
100# test run when running tempest on a real-life cloud (string value)
101#resources_prefix = tempest
102
Marc Kodererb714de52013-08-08 09:21:46 +0200103
Matthew Treinishc791ac42014-07-16 09:15:23 -0400104[auth]
105
106#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000107# From tempest.config
Matthew Treinishc791ac42014-07-16 09:15:23 -0400108#
109
Matthew Treinishc603d162015-01-05 20:03:40 -0500110# Path to the yaml file that contains the list of credentials to use
Matthew Treinishfc7cd8f2015-03-30 11:51:55 -0400111# for running tests. If used when running in parallel you have to make
112# sure sufficient credentials are provided in the accounts file. For
113# example if no tests with roles are being run it requires at least `2
114# * CONC` distinct accounts configured in the `test_accounts_file`,
115# with CONC == the number of concurrent test processes. (string value)
116#test_accounts_file = <None>
Matthew Treinishc603d162015-01-05 20:03:40 -0500117
Jon Grimm270bd7f2014-08-05 18:11:29 +0000118# Allows test cases to create/destroy tenants and users. This option
119# requires that OpenStack Identity API admin credentials are known. If
120# false, isolated test cases and parallel execution, can still be
121# achieved configuring a list of test accounts (boolean value)
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100122# Deprecated group/name - [compute]/allow_tenant_isolation
123# Deprecated group/name - [orchestration]/allow_tenant_isolation
Attila Fazekas5dda1582015-02-18 17:16:02 +0100124#allow_tenant_isolation = true
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100125
Matthew Treinish167b2be2015-01-15 17:20:27 -0500126# Roles to assign to all users created by tempest (list value)
127#tempest_roles =
128
Andrea Frittolic3280152015-02-26 12:42:34 +0000129# Only applicable when identity.auth_version is v3.Domain within which
130# isolated credentials are provisioned.The default "None" means that
131# the domain from theadmin user is used instead. (string value)
132#tenant_isolation_domain_name = <None>
133
Matthew Treinish2219d382015-04-24 10:33:04 -0400134# If allow_tenant_isolation is set to True and Neutron is enabled
135# Tempest will try to create a useable network, subnet, and router
136# when needed for each tenant it creates. However in some neutron
137# configurations, like with VLAN provider networks, this doesn't work.
138# So if set to False the isolated networks will not be created
139# (boolean value)
140#create_isolated_networks = true
141
Matthew Treinishc791ac42014-07-16 09:15:23 -0400142
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300143[baremetal]
144
145#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000146# From tempest.config
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300147#
148
Matthew Treinishc603d162015-01-05 20:03:40 -0500149# Catalog type of the baremetal provisioning service (string value)
150#catalog_type = baremetal
151
152# Whether the Ironic nova-compute driver is enabled (boolean value)
153#driver_enabled = false
154
155# Driver name which Ironic uses (string value)
156#driver = fake
157
158# The endpoint type to use for the baremetal provisioning service
159# (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400160# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500161#endpoint_type = publicURL
162
Jon Grimm270bd7f2014-08-05 18:11:29 +0000163# Timeout for Ironic node to completely provision (integer value)
164#active_timeout = 300
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300165
Jon Grimm270bd7f2014-08-05 18:11:29 +0000166# Timeout for association of Nova instance and Ironic node (integer
Adam Gandelman4a48a602014-03-20 18:23:18 -0700167# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000168#association_timeout = 30
169
Adam Gandelman4a48a602014-03-20 18:23:18 -0700170# Timeout for Ironic power transitions. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000171#power_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700172
Devananda van der Veend1e52a92015-04-13 12:58:49 -0700173# Timeout for unprovisioning an Ironic node. Takes longer since Kilo
174# as Ironic performs an extra step in Node cleaning. (integer value)
175#unprovision_timeout = 300
Adam Gandelman4a48a602014-03-20 18:23:18 -0700176
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300177
Sean Daguefc691e32014-01-03 08:51:54 -0500178[boto]
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400179
180#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000181# From tempest.config
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400182#
183
Matthew Treinishc603d162015-01-05 20:03:40 -0500184# EC2 URL (string value)
185#ec2_url = http://localhost:8773/services/Cloud
Sean Daguefc691e32014-01-03 08:51:54 -0500186
Matthew Treinishc603d162015-01-05 20:03:40 -0500187# S3 URL (string value)
188#s3_url = http://localhost:8080
Sean Daguefc691e32014-01-03 08:51:54 -0500189
Jon Grimm270bd7f2014-08-05 18:11:29 +0000190# AWS Secret Key (string value)
191#aws_secret = <None>
Sean Daguefc691e32014-01-03 08:51:54 -0500192
Matthew Treinishc603d162015-01-05 20:03:40 -0500193# AWS Access Key (string value)
194#aws_access = <None>
195
Jon Grimm270bd7f2014-08-05 18:11:29 +0000196# AWS Zone for EC2 tests (string value)
197#aws_zone = nova
Sean Daguefc691e32014-01-03 08:51:54 -0500198
Jon Grimm270bd7f2014-08-05 18:11:29 +0000199# S3 Materials Path (string value)
200#s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0
201
Matthew Treinishc603d162015-01-05 20:03:40 -0500202# ARI Ramdisk Image manifest (string value)
203#ari_manifest = cirros-0.3.0-x86_64-initrd.manifest.xml
204
205# AMI Machine Image manifest (string value)
206#ami_manifest = cirros-0.3.0-x86_64-blank.img.manifest.xml
207
208# AKI Kernel Image manifest (string value)
209#aki_manifest = cirros-0.3.0-x86_64-vmlinuz.manifest.xml
210
211# Instance type (string value)
212#instance_type = m1.tiny
213
214# boto Http socket timeout (integer value)
215#http_socket_timeout = 3
216
217# boto num_retries on error (integer value)
218#num_retries = 1
219
220# Status Change Timeout (integer value)
221#build_timeout = 60
222
223# Status Change Test Interval (integer value)
224#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -0500225
226
Matthew Treinish3d468112013-10-24 21:49:14 +0000227[compute]
228
229#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000230# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000231#
232
Matthew Treinishafcb6b42014-05-27 13:50:02 -0400233# Valid primary image reference to be used in tests. This is a
234# required option (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000235#image_ref = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000236
Jon Grimm270bd7f2014-08-05 18:11:29 +0000237# Valid secondary image reference to be used in tests. This is a
238# required option, but if only one image is available duplicate the
239# value of image_ref above (string value)
240#image_ref_alt = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000241
Matthew Treinishc603d162015-01-05 20:03:40 -0500242# Valid primary flavor to use in tests. (string value)
243#flavor_ref = 1
244
245# Valid secondary flavor to be used in tests. (string value)
246#flavor_ref_alt = 2
Matthew Treinish3d468112013-10-24 21:49:14 +0000247
Jon Grimm270bd7f2014-08-05 18:11:29 +0000248# User name used to authenticate to an instance. (string value)
249#image_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000250
Matthew Treinishc603d162015-01-05 20:03:40 -0500251# Password used to authenticate to an instance. (string value)
252#image_ssh_password = password
Matthew Treinish3d468112013-10-24 21:49:14 +0000253
Matthew Treinishc603d162015-01-05 20:03:40 -0500254# User name used to authenticate to an instance using the alternate
255# image. (string value)
256#image_alt_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000257
Matthew Treinishc603d162015-01-05 20:03:40 -0500258# Time in seconds between build status checks. (integer value)
259#build_interval = 1
Jon Grimm270bd7f2014-08-05 18:11:29 +0000260
Matthew Treinishc603d162015-01-05 20:03:40 -0500261# Timeout in seconds to wait for an instance to build. Other services
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200262# that do not define build_timeout will inherit this value. (integer
263# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500264#build_timeout = 300
Jon Grimm270bd7f2014-08-05 18:11:29 +0000265
Jon Grimm270bd7f2014-08-05 18:11:29 +0000266# Auth method used for authenticate to the instance. Valid choices
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000267# are: keypair, configured, adminpass and disabled. Keypair: start the
268# servers with a ssh keypair. Configured: use the configured user and
269# password. Adminpass: use the injected adminPass. Disabled: avoid
270# using ssh when it is an option. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000271#ssh_auth_method = keypair
272
Jon Grimm270bd7f2014-08-05 18:11:29 +0000273# How to connect to the instance? fixed: using the first ip belongs
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000274# the fixed network floating: creating and using a floating ip.
275# (string value)
276#ssh_connect_method = floating
JordanP5d29b2c2013-12-18 13:56:03 +0000277
Matthew Treinishc603d162015-01-05 20:03:40 -0500278# User name used to authenticate to an instance. (string value)
279#ssh_user = root
280
281# Timeout in seconds to wait for ping to succeed. (integer value)
282#ping_timeout = 120
283
Richard Wintersf87059b2015-02-17 11:46:54 -0500284# The packet size for ping packets originating from remote linux hosts
285# (integer value)
286#ping_size = 56
287
288# The number of ping packets originating from remote linux hosts
289# (integer value)
290#ping_count = 1
291
Jon Grimm270bd7f2014-08-05 18:11:29 +0000292# Timeout in seconds to wait for authentication to succeed. (integer
293# value)
294#ssh_timeout = 300
Matthew Treinish3d468112013-10-24 21:49:14 +0000295
Matthew Treinishc603d162015-01-05 20:03:40 -0500296# Additional wait time for clean state, when there is no OS-EXT-STS
297# extension available (integer value)
298#ready_wait = 0
299
300# Timeout in seconds to wait for output from ssh channel. (integer
301# value)
302#ssh_channel_timeout = 60
303
Matthew Treinish03feae02015-03-27 10:25:45 -0400304# Name of the fixed network that is visible to all test tenants. If
305# multiple networks are available for a tenant this is the network
306# which will be used for creating servers if tempest does not create a
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000307# network or a network is not specified elsewhere. It may be used for
308# ssh validation only if floating IPs are disabled. (string value)
Matthew Treinish03feae02015-03-27 10:25:45 -0400309#fixed_network_name = <None>
Matthew Treinishc603d162015-01-05 20:03:40 -0500310
311# Network used for SSH connections. Ignored if
Matthew Treinishe5cca002015-05-11 15:36:50 -0400312# use_floatingip_for_ssh=true or run_validation=false. (string value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500313#network_for_ssh = public
314
315# IP version used for SSH connections. (integer value)
316#ip_version_for_ssh = 4
Jon Grimm270bd7f2014-08-05 18:11:29 +0000317
318# Does SSH use Floating IPs? (boolean value)
319#use_floatingip_for_ssh = true
320
Matthew Treinishc603d162015-01-05 20:03:40 -0500321# Catalog type of the Compute service. (string value)
322#catalog_type = compute
323
324# The compute region name to use. If empty, the value of
325# identity.region is used instead. If no such region is found in the
326# service catalog, the first found one is used. (string value)
327#region =
328
329# The endpoint type to use for the compute service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400330# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500331#endpoint_type = publicURL
332
Jon Grimm270bd7f2014-08-05 18:11:29 +0000333# Expected device name when a volume is attached to an instance
Matthew Treinish3d468112013-10-24 21:49:14 +0000334# (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000335#volume_device_name = vdb
Sean Dague82190852014-05-24 07:42:59 -0400336
Matthew Treinishc603d162015-01-05 20:03:40 -0500337# Time in seconds before a shelved instance is eligible for removing
338# from a host. -1 never offload, 0 offload when shelved. This time
339# should be the same as the time of nova.conf, and some tests will run
340# for as long as the time. (integer value)
341#shelved_offload_time = 0
342
343# Unallocated floating IP range, which will be used to test the
344# floating IP bulk feature for CRUD operation. This block must not
345# overlap an existing floating IP pool. (string value)
346#floating_ip_range = 10.0.0.0/29
347
Sean Daguefc691e32014-01-03 08:51:54 -0500348
Sean Daguefc691e32014-01-03 08:51:54 -0500349[compute-feature-enabled]
Matthew Treinish3d468112013-10-24 21:49:14 +0000350
351#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000352# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000353#
354
Matthew Treinishc603d162015-01-05 20:03:40 -0500355# If false, skip disk config tests (boolean value)
356#disk_config = true
357
Jon Grimm270bd7f2014-08-05 18:11:29 +0000358# A list of enabled compute extensions with a special entry all which
359# indicates every extension is enabled. Each extension should be
360# specified with alias name. Empty list indicates all extensions are
361# disabled (list value)
362#api_extensions = all
Matthew Treinish3d468112013-10-24 21:49:14 +0000363
Jon Grimm270bd7f2014-08-05 18:11:29 +0000364# Does the test environment support changing the admin password?
365# (boolean value)
366#change_password = false
367
368# Does the test environment support obtaining instance serial console
369# output? (boolean value)
370#console_output = true
Matthew Treinish20866a22014-06-12 14:58:36 -0400371
Matthew Treinishc603d162015-01-05 20:03:40 -0500372# Does the test environment support resizing? (boolean value)
373#resize = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000374
Matthew Treinishc603d162015-01-05 20:03:40 -0500375# Does the test environment support pausing? (boolean value)
376#pause = true
Ghanshyam9c2e50d2014-07-22 21:32:05 +0900377
Matthew Treinishc603d162015-01-05 20:03:40 -0500378# Does the test environment support shelving/unshelving? (boolean
379# value)
380#shelve = true
381
382# Does the test environment support suspend/resume? (boolean value)
383#suspend = true
Adam Gandelman7186f7a2014-07-23 09:28:56 -0400384
Jon Grimm270bd7f2014-08-05 18:11:29 +0000385# Does the test environment support live migration available? (boolean
386# value)
Joe Gordon31a139a2014-11-17 16:39:04 -0800387#live_migration = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000388
Matthew Treinishc603d162015-01-05 20:03:40 -0500389# Does the test environment use block devices for live migration
390# (boolean value)
391#block_migration_for_live_migration = false
392
393# Does the test environment block migration support cinder iSCSI
Joe Gordon0a5788f2015-03-17 11:29:38 -0700394# volumes. Note, libvirt doesn't support this, see
395# https://bugs.launchpad.net/nova/+bug/1398999 (boolean value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500396#block_migrate_cinder_iscsi = false
397
Matt Riedemannbb9f7042015-03-03 08:53:11 -0800398# Does the test system allow live-migration of paused instances? Note,
399# this is more than just the ANDing of paused and live_migrate, but
400# all 3 should be set to True to run those tests (boolean value)
401#live_migrate_paused_instances = false
402
Matthew Treinishc603d162015-01-05 20:03:40 -0500403# Enable VNC console. This configuration value should be same as
404# [nova.vnc]->vnc_enabled in nova.conf (boolean value)
405#vnc_console = false
406
407# Enable Spice console. This configuration value should be same as
408# [nova.spice]->enabled in nova.conf (boolean value)
409#spice_console = false
Jon Grimm270bd7f2014-08-05 18:11:29 +0000410
411# Enable RDP console. This configuration value should be same as
412# [nova.rdp]->enabled in nova.conf (boolean value)
413#rdp_console = false
414
415# Does the test environment support instance rescue mode? (boolean
416# value)
417#rescue = true
418
Matthew Treinishc603d162015-01-05 20:03:40 -0500419# Enables returning of the instance password by the relevant server
420# API calls such as create, rebuild or rescue. (boolean value)
421#enable_instance_password = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000422
Matthew Treinishc603d162015-01-05 20:03:40 -0500423# Does the test environment support dynamic network interface
424# attachment? (boolean value)
425#interface_attach = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000426
427# Does the test environment support creating snapshot images of
428# running instances? (boolean value)
429#snapshot = true
430
Matthew Treinishdfd7ac02015-02-09 17:47:31 -0500431# Does the test environment have the ec2 api running? (boolean value)
432#ec2_api = true
433
Matt Riedemann17940732015-03-13 14:18:19 +0000434# Does Nova preserve preexisting ports from Neutron when deleting an
435# instance? This should be set to True if testing Kilo+ Nova. (boolean
436# value)
437#preserve_ports = false
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)
Davanum Srinivasefead032015-03-09 17:27:42 -0400464# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000465#endpoint_type = publicURL
JordanPfc62c902014-02-26 14:47:28 +0000466
Sean Daguefc691e32014-01-03 08:51:54 -0500467
Luigi Toscano14d172d2015-01-23 16:37:47 +0100468[data_processing-feature-enabled]
469
470#
471# From tempest.config
472#
473
474# List of enabled data processing plugins (list value)
475#plugins = vanilla,hdp
476
477
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800478[database]
479
480#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000481# From tempest.config
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800482#
483
484# Catalog type of the Database service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000485#catalog_type = database
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800486
Jon Grimm270bd7f2014-08-05 18:11:29 +0000487# Valid primary flavor to use in database tests. (string value)
488#db_flavor_ref = 1
Peter Stachowski320f9c72014-04-21 16:13:23 -0400489
Matthew Treinishc603d162015-01-05 20:03:40 -0500490# Current database version to use in database tests. (string value)
491#db_current_version = v1.0
492
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800493
Sean Daguefc691e32014-01-03 08:51:54 -0500494[debug]
495
496#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000497# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500498#
499
Jon Grimm270bd7f2014-08-05 18:11:29 +0000500# A regex to determine which requests should be traced. This is a
501# regex to match the caller for rest client requests to be able to
502# selectively trace calls out of specific classes and methods. It
503# largely exists for test development, and is not expected to be used
504# in a real deploy of tempest. This will be matched against the
505# discovered ClassName:method in the test environment. Expected
506# values for this field are: * ClassName:test_method_name - traces
507# one test_method * ClassName:setUp(Class) - traces specific setup
508# functions * ClassName:tearDown(Class) - traces specific teardown
509# functions * ClassName:_run_cleanups - traces the cleanup functions
510# If nothing is specified, this feature is not enabled. To trace
511# everything specify .* as the regex. (string value)
512#trace_requests =
Sean Daguec522c092014-03-24 10:43:22 -0400513
Sean Daguefc691e32014-01-03 08:51:54 -0500514
515[identity]
516
517#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000518# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500519#
520
Jon Grimm270bd7f2014-08-05 18:11:29 +0000521# Catalog type of the Identity service. (string value)
522#catalog_type = identity
523
524# Set to True if using self-signed SSL certificates. (boolean value)
525#disable_ssl_certificate_validation = false
526
Matthew Treinishc603d162015-01-05 20:03:40 -0500527# Specify a CA bundle file to use in verifying a TLS (https) server
528# certificate. (string value)
529#ca_certificates_file = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +0000530
531# Full URI of the OpenStack Identity API (Keystone), v2 (string value)
532#uri = <None>
533
534# Full URI of the OpenStack Identity API (Keystone), v3 (string value)
535#uri_v3 = <None>
536
Matthew Treinishc603d162015-01-05 20:03:40 -0500537# Identity API version to be used for authentication for API tests.
538# (string value)
539#auth_version = v2
540
541# The identity region name to use. Also used as the other services'
542# region name unless they are set explicitly. If no such region is
543# found in the service catalog, the first found one is used. (string
544# value)
545#region = RegionOne
546
547# The endpoint type to use for the identity service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400548# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500549#endpoint_type = publicURL
550
Jon Grimm270bd7f2014-08-05 18:11:29 +0000551# Username to use for Nova API requests. (string value)
552#username = <None>
Andrea Frittolib1b04bb2014-04-06 11:57:07 +0100553
Matthew Treinishc603d162015-01-05 20:03:40 -0500554# Tenant name to use for Nova API requests. (string value)
555#tenant_name = <None>
556
557# Role required to administrate keystone. (string value)
558#admin_role = admin
559
560# API key to use when authenticating. (string value)
561#password = <None>
562
563# Domain name for authentication (Keystone V3).The same domain applies
564# to user and project (string value)
565#domain_name = <None>
566
567# Username of alternate user to use for Nova API requests. (string
568# value)
569#alt_username = <None>
570
571# Alternate user's Tenant name to use for Nova API requests. (string
572# value)
573#alt_tenant_name = <None>
574
575# API key to use when authenticating as alternate user. (string value)
576#alt_password = <None>
577
578# Alternate domain name for authentication (Keystone V3).The same
579# domain applies to user and project (string value)
580#alt_domain_name = <None>
581
582# Administrative Username to use for Keystone API requests. (string
583# value)
584#admin_username = <None>
585
586# Administrative Tenant name to use for Keystone API requests. (string
587# value)
588#admin_tenant_name = <None>
589
590# API key to use when authenticating as admin. (string value)
591#admin_password = <None>
592
593# Admin domain name for authentication (Keystone V3).The same domain
594# applies to user and project (string value)
595#admin_domain_name = <None>
596
Martin Pavlasek4c3f2ab2014-04-15 17:15:15 +0200597# ID of the default domain (string value)
598#default_domain_id = default
599
Sean Daguefc691e32014-01-03 08:51:54 -0500600
Matthew Treinishd5021a72014-01-09 18:42:51 +0000601[identity-feature-enabled]
602
603#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000604# From tempest.config
Matthew Treinishd5021a72014-01-09 18:42:51 +0000605#
606
Matthew Treinishc603d162015-01-05 20:03:40 -0500607# Does the identity service have delegation and impersonation enabled
608# (boolean value)
609#trust = true
610
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000611# Is the v2 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000612#api_v2 = true
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000613
614# Is the v3 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000615#api_v3 = true
616
Matthew Treinishd5021a72014-01-09 18:42:51 +0000617
Sean Daguefc691e32014-01-03 08:51:54 -0500618[image]
619
620#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000621# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500622#
623
624# Catalog type of the Image service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000625#catalog_type = image
Sean Daguefc691e32014-01-03 08:51:54 -0500626
Matthew Treinishc603d162015-01-05 20:03:40 -0500627# The image region name to use. If empty, the value of identity.region
628# is used instead. If no such region is found in the service catalog,
629# the first found one is used. (string value)
630#region =
631
Jon Grimm270bd7f2014-08-05 18:11:29 +0000632# The endpoint type to use for the image service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400633# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000634#endpoint_type = publicURL
JordanP5d29b2c2013-12-18 13:56:03 +0000635
Sean Daguefc691e32014-01-03 08:51:54 -0500636# http accessible image (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000637#http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
638
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200639# Timeout in seconds to wait for an image to become available.
640# (integer value)
641#build_timeout = 300
642
643# Time in seconds between image operation status checks. (integer
644# value)
645#build_interval = 1
646
Sean Daguefc691e32014-01-03 08:51:54 -0500647
648[image-feature-enabled]
649
650#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000651# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500652#
653
Jon Grimm270bd7f2014-08-05 18:11:29 +0000654# Is the v2 image API enabled (boolean value)
655#api_v2 = true
Sean Daguefc691e32014-01-03 08:51:54 -0500656
Matthew Treinishc603d162015-01-05 20:03:40 -0500657# Is the v1 image API enabled (boolean value)
658#api_v1 = true
659
bkopilov81aaae72015-05-15 23:46:25 +0300660# Is the deactivate-image feature enabled. The feature has been
661# integrated since Kilo. (boolean value)
662#deactivate_image = false
663
Sean Daguefc691e32014-01-03 08:51:54 -0500664
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000665[input-scenario]
666
667#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000668# From tempest.config
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000669#
670
Jon Grimm270bd7f2014-08-05 18:11:29 +0000671# Matching images become parameters for scenario tests (string value)
672#image_regex = ^cirros-0.3.1-x86_64-uec$
673
Matthew Treinishc603d162015-01-05 20:03:40 -0500674# Matching flavors become parameters for scenario tests (string value)
675#flavor_regex = ^m1.nano$
676
Jon Grimm270bd7f2014-08-05 18:11:29 +0000677# SSH verification in tests is skippedfor matching images (string
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000678# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000679#non_ssh_image_regex = ^.*[Ww]in.*$
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000680
Jon Grimm270bd7f2014-08-05 18:11:29 +0000681# List of user mapped to regex to matching image names. (string value)
Marc Koderer07f5a522015-03-27 15:02:41 +0100682#ssh_user_regex = [["^.*[Cc]irros.*$", "cirros"]]
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000683
684
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300685[messaging]
686
687#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000688# From tempest.config
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300689#
690
691# Catalog type of the Messaging service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000692#catalog_type = messaging
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300693
Matthew Treinishc603d162015-01-05 20:03:40 -0500694# The maximum number of queue records per page when listing queues
695# (integer value)
696#max_queues_per_page = 20
Jon Grimm270bd7f2014-08-05 18:11:29 +0000697
Matthew Treinishc603d162015-01-05 20:03:40 -0500698# The maximum metadata size for a queue (integer value)
699#max_queue_metadata = 65536
Jon Grimm270bd7f2014-08-05 18:11:29 +0000700
701# The maximum number of queue message per page when listing (or)
702# posting messages (integer value)
703#max_messages_per_page = 20
704
Matthew Treinishc603d162015-01-05 20:03:40 -0500705# The maximum size of a message body (integer value)
706#max_message_size = 262144
Jon Grimm270bd7f2014-08-05 18:11:29 +0000707
Matthew Treinishc603d162015-01-05 20:03:40 -0500708# The maximum number of messages per claim (integer value)
709#max_messages_per_claim = 20
710
711# The maximum ttl for a message (integer value)
712#max_message_ttl = 1209600
713
714# The maximum ttl for a claim (integer value)
715#max_claim_ttl = 43200
716
717# The maximum grace period for a claim (integer value)
718#max_claim_grace = 43200
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300719
720
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100721[negative]
722
723#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000724# From tempest.config
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100725#
726
727# Test generator class for all negative tests (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000728#test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100729
730
Sean Daguefc691e32014-01-03 08:51:54 -0500731[network]
732
733#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000734# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500735#
736
737# Catalog type of the Neutron service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000738#catalog_type = network
739
Sean Daguefc691e32014-01-03 08:51:54 -0500740# The network region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +0000741# identity.region is used instead. If no such region is found in the
742# service catalog, the first found one is used. (string value)
743#region =
Sean Daguefc691e32014-01-03 08:51:54 -0500744
Matthew Treinishc603d162015-01-05 20:03:40 -0500745# The endpoint type to use for the network service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400746# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500747#endpoint_type = publicURL
748
Jon Grimm270bd7f2014-08-05 18:11:29 +0000749# The cidr block to allocate tenant ipv4 subnets from (string value)
750#tenant_network_cidr = 10.100.0.0/16
Sean Daguefc691e32014-01-03 08:51:54 -0500751
Henry Gessauffda37a2014-01-16 11:17:55 -0500752# The mask bits for tenant ipv4 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000753#tenant_network_mask_bits = 28
Sean Daguefc691e32014-01-03 08:51:54 -0500754
Jon Grimm270bd7f2014-08-05 18:11:29 +0000755# The cidr block to allocate tenant ipv6 subnets from (string value)
756#tenant_network_v6_cidr = 2003::/48
Henry Gessauffda37a2014-01-16 11:17:55 -0500757
758# The mask bits for tenant ipv6 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000759#tenant_network_v6_mask_bits = 64
Henry Gessauffda37a2014-01-16 11:17:55 -0500760
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000761# Whether tenant networks can be reached directly from the test
762# client. This must be set to True when the 'fixed' ssh_connect_method
763# is selected. (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000764#tenant_networks_reachable = false
Attila Fazekas640392b2014-06-12 15:58:10 +0200765
Matthew Treinishc603d162015-01-05 20:03:40 -0500766# Id of the public network that provides external connectivity (string
767# value)
768#public_network_id =
769
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000770# Default floating network name. Used to allocate floating IPs when
771# neutron is enabled. (string value)
772#floating_network_name = <None>
773
Matthew Treinishc603d162015-01-05 20:03:40 -0500774# Id of the public router that provides external connectivity. This
775# should only be used when Neutron's 'allow_overlapping_ips' is set to
776# 'False' in neutron.conf. usually not needed past 'Grizzly' release
777# (string value)
778#public_router_id =
779
780# Timeout in seconds to wait for network operation to complete.
781# (integer value)
782#build_timeout = 300
783
784# Time in seconds between network operation status checks. (integer
785# value)
786#build_interval = 1
787
788# List of dns servers which should be used for subnet creation (list
789# value)
790#dns_servers = 8.8.8.8,8.8.4.4
791
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200792# vnic_type to use when Launching instances with pre-configured ports.
793# Supported ports are: ['normal','direct','macvtap'] (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400794# Allowed values: <None>, normal, direct, macvtap
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200795#port_vnic_type = <None>
796
Sean Daguefc691e32014-01-03 08:51:54 -0500797
798[network-feature-enabled]
799
800#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000801# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500802#
803
Matthew Treinishc603d162015-01-05 20:03:40 -0500804# Allow the execution of IPv6 tests (boolean value)
805#ipv6 = true
806
Jon Grimm270bd7f2014-08-05 18:11:29 +0000807# A list of enabled network extensions with a special entry all which
808# indicates every extension is enabled. Empty list indicates all
809# extensions are disabled (list value)
810#api_extensions = all
811
Jon Grimm270bd7f2014-08-05 18:11:29 +0000812# Allow the execution of IPv6 subnet tests that use the extended IPv6
813# attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
814#ipv6_subnet_attributes = false
Sean M. Collinsdd27a4d2014-05-13 10:33:15 -0400815
Itzik Brownbeb30d32015-03-29 09:42:54 +0300816# Does the test environment support changing port admin state (boolean
817# value)
818#port_admin_state_change = true
819
Sean Daguefc691e32014-01-03 08:51:54 -0500820
821[object-storage]
822
823#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000824# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500825#
826
827# Catalog type of the Object-Storage service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000828#catalog_type = object-store
Sean Daguefc691e32014-01-03 08:51:54 -0500829
Matthew Treinishc603d162015-01-05 20:03:40 -0500830# The object-storage region name to use. If empty, the value of
831# identity.region is used instead. If no such region is found in the
832# service catalog, the first found one is used. (string value)
833#region =
JordanP5d29b2c2013-12-18 13:56:03 +0000834
Jon Grimm270bd7f2014-08-05 18:11:29 +0000835# The endpoint type to use for the object-store service. (string
836# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400837# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000838#endpoint_type = publicURL
Sean Daguefc691e32014-01-03 08:51:54 -0500839
Matthew Treinishc603d162015-01-05 20:03:40 -0500840# Number of seconds to time on waiting for a container to container
841# synchronization complete. (integer value)
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900842#container_sync_timeout = 600
Matthew Treinishc603d162015-01-05 20:03:40 -0500843
844# Number of seconds to wait while looping to check the status of a
845# container to container synchronization (integer value)
846#container_sync_interval = 5
847
Jon Grimm270bd7f2014-08-05 18:11:29 +0000848# Role to add to users created for swift tests to enable creating
849# containers (string value)
850#operator_role = Member
Sean Daguefc691e32014-01-03 08:51:54 -0500851
Matthew Treinish998c91d2014-03-01 12:39:49 -0500852# User role that has reseller admin (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000853#reseller_admin_role = ResellerAdmin
Matthew Treinish998c91d2014-03-01 12:39:49 -0500854
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900855# Name of sync realm. A sync realm is a set of clusters that have
856# agreed to allow container syncing with each other. Set the same
857# realm name as Swift's container-sync-realms.conf (string value)
858#realm_name = realm1
859
860# One name of cluster which is set in the realm whose name is set in
861# 'realm_name' item in this file. Set the same cluster name as Swift's
862# container-sync-realms.conf (string value)
863#cluster_name = name1
864
Sean Daguefc691e32014-01-03 08:51:54 -0500865
866[object-storage-feature-enabled]
867
868#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000869# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500870#
871
Jon Grimm270bd7f2014-08-05 18:11:29 +0000872# A list of the enabled optional discoverable apis. A single entry,
873# all, indicates that all of these features are expected to be enabled
874# (list value)
875#discoverable_apis = all
876
Matthew Treinishc603d162015-01-05 20:03:40 -0500877# Execute (old style) container-sync tests (boolean value)
878#container_sync = true
879
Jon Grimm270bd7f2014-08-05 18:11:29 +0000880# Execute object-versioning tests (boolean value)
881#object_versioning = true
Daisuke Morita20a183f2014-08-25 14:43:36 +0900882
Matthew Treinishc603d162015-01-05 20:03:40 -0500883# Execute discoverability tests (boolean value)
884#discoverability = true
885
Sean Daguefc691e32014-01-03 08:51:54 -0500886
Matthew Treinish3d468112013-10-24 21:49:14 +0000887[orchestration]
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900888
Matthew Treinish3d468112013-10-24 21:49:14 +0000889#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000890# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000891#
Attila Fazekas86950732013-06-08 09:33:08 +0200892
Matthew Treinishc603d162015-01-05 20:03:40 -0500893# Catalog type of the Orchestration service. (string value)
894#catalog_type = orchestration
895
896# The orchestration region name to use. If empty, the value of
897# identity.region is used instead. If no such region is found in the
898# service catalog, the first found one is used. (string value)
899#region =
900
901# The endpoint type to use for the orchestration service. (string
902# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400903# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500904#endpoint_type = publicURL
905
Matthew Treinishdb9721d2015-03-18 14:21:28 -0400906# Role required for users to be able to manage stacks (string value)
907#stack_owner_role = heat_stack_owner
908
Jon Grimm270bd7f2014-08-05 18:11:29 +0000909# Time in seconds between build status checks. (integer value)
910#build_interval = 1
911
912# Timeout in seconds to wait for a stack to build. (integer value)
913#build_timeout = 1200
914
Matthew Treinishc603d162015-01-05 20:03:40 -0500915# Instance type for tests. Needs to be big enough for a full OS plus
916# the test workload (string value)
917#instance_type = m1.micro
Jon Grimm270bd7f2014-08-05 18:11:29 +0000918
Jon Grimm270bd7f2014-08-05 18:11:29 +0000919# Name of existing keypair to launch servers with. (string value)
920#keypair_name = <None>
921
922# Value must match heat configuration of the same name. (integer
923# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500924#max_template_size = 524288
Jon Grimm270bd7f2014-08-05 18:11:29 +0000925
926# Value must match heat configuration of the same name. (integer
927# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500928#max_resources_per_stack = 1000
Steven Hardyfdc6bd72014-03-21 16:56:04 +0000929
Matthew Treinish3d468112013-10-24 21:49:14 +0000930
Doug Hellmann583ce2c2015-03-11 14:55:46 +0000931[oslo_concurrency]
932
933#
934# From oslo.concurrency
935#
936
937# Enables or disables inter-process locks. (boolean value)
938# Deprecated group/name - [DEFAULT]/disable_process_locking
939#disable_process_locking = false
940
941# Directory to use for lock files. For security, the specified
942# directory should only be writable by the user running the processes
943# that need locking. Defaults to environment variable OSLO_LOCK_PATH.
944# If external locks are used, a lock path must be set. (string value)
945# Deprecated group/name - [DEFAULT]/lock_path
946#lock_path = <None>
947
948
Sean Daguefc691e32014-01-03 08:51:54 -0500949[scenario]
Matthew Treinish3d468112013-10-24 21:49:14 +0000950
951#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000952# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000953#
954
Matthew Treinishc603d162015-01-05 20:03:40 -0500955# Directory containing image files (string value)
956#img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
957
958# Image file name (string value)
959# Deprecated group/name - [DEFAULT]/qcow2_img_file
960#img_file = cirros-0.3.1-x86_64-disk.img
961
962# Image disk format (string value)
963#img_disk_format = qcow2
964
965# Image container format (string value)
966#img_container_format = bare
Jon Grimm270bd7f2014-08-05 18:11:29 +0000967
Evgeny Antyshev7ba0d5f2015-04-28 13:18:07 +0000968# Glance image properties. Use for custom images which require them
969# (dict value)
970#img_properties = <None>
971
Jon Grimm270bd7f2014-08-05 18:11:29 +0000972# AMI image file name (string value)
973#ami_img_file = cirros-0.3.1-x86_64-blank.img
974
975# ARI image file name (string value)
976#ari_img_file = cirros-0.3.1-x86_64-initrd
977
Matthew Treinishc603d162015-01-05 20:03:40 -0500978# AKI image file name (string value)
979#aki_img_file = cirros-0.3.1-x86_64-vmlinuz
Jon Grimm270bd7f2014-08-05 18:11:29 +0000980
Matthew Treinishc603d162015-01-05 20:03:40 -0500981# ssh username for the image file (string value)
982#ssh_user = cirros
Alessandro Pilottib7c1daa2014-08-16 14:24:13 +0300983
Jon Grimm270bd7f2014-08-05 18:11:29 +0000984# specifies how many resources to request at once. Used for large
985# operations testing. (integer value)
986#large_ops_number = 0
Sean Daguefc691e32014-01-03 08:51:54 -0500987
Yair Fried413bf2d2014-11-19 17:07:11 +0200988# DHCP client used by images to renew DCHP lease. If left empty,
989# update operation will be skipped. Supported clients: "udhcpc",
990# "dhclient" (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400991# Allowed values: udhcpc, dhclient
Yair Fried413bf2d2014-11-19 17:07:11 +0200992#dhcp_client = udhcpc
993
Matthew Treinish3d468112013-10-24 21:49:14 +0000994
995[service_available]
996
997#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000998# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000999#
1000
Jon Grimm270bd7f2014-08-05 18:11:29 +00001001# Whether or not cinder is expected to be available (boolean value)
1002#cinder = true
Matthew Treinish3d468112013-10-24 21:49:14 +00001003
Jon Grimm270bd7f2014-08-05 18:11:29 +00001004# Whether or not neutron is expected to be available (boolean value)
1005#neutron = false
Matthew Treinish3d468112013-10-24 21:49:14 +00001006
Matthew Treinishc603d162015-01-05 20:03:40 -05001007# Whether or not glance is expected to be available (boolean value)
1008#glance = true
1009
1010# Whether or not swift is expected to be available (boolean value)
1011#swift = true
1012
Jon Grimm270bd7f2014-08-05 18:11:29 +00001013# Whether or not nova is expected to be available (boolean value)
1014#nova = true
Matthew Treinish3d468112013-10-24 21:49:14 +00001015
Matthew Treinishc603d162015-01-05 20:03:40 -05001016# Whether or not Heat is expected to be available (boolean value)
1017#heat = false
1018
1019# Whether or not Ceilometer is expected to be available (boolean
1020# value)
1021#ceilometer = true
1022
1023# Whether or not Horizon is expected to be available (boolean value)
1024#horizon = true
1025
Jon Grimm270bd7f2014-08-05 18:11:29 +00001026# Whether or not Sahara is expected to be available (boolean value)
1027#sahara = false
Matthew Treinishe3d26142013-11-26 19:14:58 +00001028
Matthew Treinishc603d162015-01-05 20:03:40 -05001029# Whether or not Ironic is expected to be available (boolean value)
1030#ironic = false
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +03001031
Jon Grimm270bd7f2014-08-05 18:11:29 +00001032# Whether or not Trove is expected to be available (boolean value)
1033#trove = false
Nikhil Manchandadd6886f2014-03-03 01:58:45 -08001034
Jon Grimm270bd7f2014-08-05 18:11:29 +00001035# Whether or not Zaqar is expected to be available (boolean value)
1036#zaqar = false
Malini Kamalambal6e7b3b82014-02-06 06:49:04 -05001037
Matthew Treinish3d468112013-10-24 21:49:14 +00001038
Sean Daguefc691e32014-01-03 08:51:54 -05001039[stress]
1040
1041#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001042# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001043#
1044
Matthew Treinishc603d162015-01-05 20:03:40 -05001045# Directory containing log files on the compute nodes (string value)
1046#nova_logdir = <None>
1047
1048# Maximum number of instances to create during test. (integer value)
1049#max_instances = 16
1050
Jon Grimm270bd7f2014-08-05 18:11:29 +00001051# Controller host. (string value)
1052#controller = <None>
Sean Daguefc691e32014-01-03 08:51:54 -05001053
Matthew Treinishc603d162015-01-05 20:03:40 -05001054# Controller host. (string value)
1055#target_controller = <None>
1056
1057# ssh user. (string value)
1058#target_ssh_user = <None>
1059
1060# Path to private key. (string value)
1061#target_private_key_path = <None>
1062
1063# regexp for list of log files. (string value)
1064#target_logfiles = <None>
1065
1066# time (in seconds) between log file error checks. (integer value)
1067#log_check_interval = 60
1068
Jon Grimm270bd7f2014-08-05 18:11:29 +00001069# The number of threads created while stress test. (integer value)
1070#default_thread_number_per_action = 4
1071
Jon Grimm270bd7f2014-08-05 18:11:29 +00001072# Prevent the cleaning (tearDownClass()) between each stress test run
1073# if an exception occurs during this run. (boolean value)
1074#leave_dirty_stack = false
1075
Matthew Treinishc603d162015-01-05 20:03:40 -05001076# Allows a full cleaning process after a stress test. Caution : this
1077# cleanup will remove every objects of every tenant. (boolean value)
1078#full_clean_stack = false
Julien Leloupa5ee5422014-02-13 14:29:02 +01001079
Sean Daguefc691e32014-01-03 08:51:54 -05001080
1081[telemetry]
1082
1083#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001084# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001085#
1086
1087# Catalog type of the Telemetry service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001088#catalog_type = metering
Sean Daguefc691e32014-01-03 08:51:54 -05001089
Jon Grimm270bd7f2014-08-05 18:11:29 +00001090# The endpoint type to use for the telemetry service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001091# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +00001092#endpoint_type = publicURL
1093
1094# This variable is used as flag to enable notification tests (boolean
JordanPfc62c902014-02-26 14:47:28 +00001095# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001096#too_slow_to_test = true
Vadim Rovachev7bcea352013-12-26 15:56:17 +04001097
Sean Daguefc691e32014-01-03 08:51:54 -05001098
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001099[validation]
1100
1101#
1102# From tempest.config
1103#
1104
Matthew Treinishe5cca002015-05-11 15:36:50 -04001105# Enable ssh on created servers and creation of additional validation
1106# resources to enable remote access (boolean value)
1107# Deprecated group/name - [compute]/run_ssh
1108#run_validation = false
1109
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001110# Default IP type used for validation: -fixed: uses the first IP
1111# belonging to the fixed network -floating: creates and uses a
1112# floating IP (string value)
1113# Allowed values: fixed, floating
1114#connect_method = floating
1115
1116# Default authentication method to the instance. Only ssh via keypair
1117# is supported for now. Additional methods will be handled in a
1118# separate spec. (string value)
1119# Allowed values: keypair
1120#auth_method = keypair
1121
1122# Default IP version for ssh connections. (integer value)
1123#ip_version_for_ssh = 4
1124
1125# Timeout in seconds to wait for ping to succeed. (integer value)
1126#ping_timeout = 120
1127
1128# Timeout in seconds to wait for the TCP connection to be successful.
1129# (integer value)
1130#connect_timeout = 60
1131
1132# Timeout in seconds to wait for the ssh banner. (integer value)
1133#ssh_timeout = 300
1134
1135
Sean Daguefc691e32014-01-03 08:51:54 -05001136[volume]
1137
1138#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001139# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001140#
1141
Jon Grimm270bd7f2014-08-05 18:11:29 +00001142# Time in seconds between volume availability checks. (integer value)
1143#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -05001144
Eric Harney9b1f89c2014-10-14 14:40:19 -04001145# Timeout in seconds to wait for a volume to become available.
Sean Daguefc691e32014-01-03 08:51:54 -05001146# (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001147#build_timeout = 300
Sean Daguefc691e32014-01-03 08:51:54 -05001148
1149# Catalog type of the Volume Service (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001150#catalog_type = volume
1151
Sean Daguefc691e32014-01-03 08:51:54 -05001152# The volume region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +00001153# identity.region is used instead. If no such region is found in the
1154# service catalog, the first found one is used. (string value)
1155#region =
1156
Matthew Treinishc603d162015-01-05 20:03:40 -05001157# The endpoint type to use for the volume service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001158# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -05001159#endpoint_type = publicURL
1160
1161# Name of the backend1 (must be declared in cinder.conf) (string
1162# value)
1163#backend1_name = BACKEND_1
1164
1165# Name of the backend2 (must be declared in cinder.conf) (string
1166# value)
1167#backend2_name = BACKEND_2
1168
Jon Grimm270bd7f2014-08-05 18:11:29 +00001169# Backend protocol to target when creating volume types (string value)
1170#storage_protocol = iSCSI
1171
1172# Backend vendor to target when creating volume types (string value)
1173#vendor_name = Open Source
1174
Matthew Treinishc603d162015-01-05 20:03:40 -05001175# Disk format to use when copying a volume to image (string value)
1176#disk_format = raw
1177
Jon Grimm270bd7f2014-08-05 18:11:29 +00001178# Default size in GB for volumes created by volumes tests (integer
Sean Daguefc691e32014-01-03 08:51:54 -05001179# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001180#volume_size = 1
Jerry Cai9733d0e2014-03-19 15:50:49 +08001181
Sean Daguefc691e32014-01-03 08:51:54 -05001182
1183[volume-feature-enabled]
1184
1185#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001186# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001187#
1188
Matthew Treinishc603d162015-01-05 20:03:40 -05001189# Runs Cinder multi-backend test (requires 2 backends) (boolean value)
1190#multi_backend = false
1191
1192# Runs Cinder volumes backup test (boolean value)
1193#backup = true
1194
1195# Runs Cinder volume snapshot test (boolean value)
1196#snapshot = true
1197
Jon Grimm270bd7f2014-08-05 18:11:29 +00001198# A list of enabled volume extensions with a special entry all which
1199# indicates every extension is enabled. Empty list indicates all
1200# extensions are disabled (list value)
1201#api_extensions = all
Zhi Kun Liude25c022014-02-14 13:25:19 +08001202
Sean Daguefc691e32014-01-03 08:51:54 -05001203# Is the v1 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001204#api_v1 = true
Sean Daguefc691e32014-01-03 08:51:54 -05001205
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +08001206# Is the v2 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001207#api_v2 = true
bkopilov8a657ae2015-05-11 11:45:23 +03001208
1209# Update bootable status of a volume Not implemented on icehouse
1210# (boolean value)
1211#bootable = false