blob: 4e64d7f2babe1de656c22b47e2947022c169bced [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
Marc Kodererb714de52013-08-08 09:21:46 +020094
Matthew Treinishc791ac42014-07-16 09:15:23 -040095[auth]
96
97#
Jon Grimm270bd7f2014-08-05 18:11:29 +000098# From tempest.config
Matthew Treinishc791ac42014-07-16 09:15:23 -040099#
100
Matthew Treinishc603d162015-01-05 20:03:40 -0500101# Path to the yaml file that contains the list of credentials to use
Matthew Treinishfc7cd8f2015-03-30 11:51:55 -0400102# for running tests. If used when running in parallel you have to make
103# sure sufficient credentials are provided in the accounts file. For
104# example if no tests with roles are being run it requires at least `2
105# * CONC` distinct accounts configured in the `test_accounts_file`,
106# with CONC == the number of concurrent test processes. (string value)
107#test_accounts_file = <None>
Matthew Treinishc603d162015-01-05 20:03:40 -0500108
Jon Grimm270bd7f2014-08-05 18:11:29 +0000109# Allows test cases to create/destroy tenants and users. This option
110# requires that OpenStack Identity API admin credentials are known. If
111# false, isolated test cases and parallel execution, can still be
112# achieved configuring a list of test accounts (boolean value)
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100113# Deprecated group/name - [compute]/allow_tenant_isolation
114# Deprecated group/name - [orchestration]/allow_tenant_isolation
Attila Fazekas5dda1582015-02-18 17:16:02 +0100115#allow_tenant_isolation = true
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100116
Matthew Treinish167b2be2015-01-15 17:20:27 -0500117# Roles to assign to all users created by tempest (list value)
118#tempest_roles =
119
Andrea Frittolic3280152015-02-26 12:42:34 +0000120# Only applicable when identity.auth_version is v3.Domain within which
121# isolated credentials are provisioned.The default "None" means that
122# the domain from theadmin user is used instead. (string value)
123#tenant_isolation_domain_name = <None>
124
Matthew Treinish2219d382015-04-24 10:33:04 -0400125# If allow_tenant_isolation is set to True and Neutron is enabled
126# Tempest will try to create a useable network, subnet, and router
127# when needed for each tenant it creates. However in some neutron
128# configurations, like with VLAN provider networks, this doesn't work.
129# So if set to False the isolated networks will not be created
130# (boolean value)
131#create_isolated_networks = true
132
Matthew Treinishc791ac42014-07-16 09:15:23 -0400133
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300134[baremetal]
135
136#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000137# From tempest.config
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300138#
139
Matthew Treinishc603d162015-01-05 20:03:40 -0500140# Catalog type of the baremetal provisioning service (string value)
141#catalog_type = baremetal
142
143# Whether the Ironic nova-compute driver is enabled (boolean value)
144#driver_enabled = false
145
146# Driver name which Ironic uses (string value)
147#driver = fake
148
149# The endpoint type to use for the baremetal provisioning service
150# (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400151# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500152#endpoint_type = publicURL
153
Jon Grimm270bd7f2014-08-05 18:11:29 +0000154# Timeout for Ironic node to completely provision (integer value)
155#active_timeout = 300
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300156
Jon Grimm270bd7f2014-08-05 18:11:29 +0000157# Timeout for association of Nova instance and Ironic node (integer
Adam Gandelman4a48a602014-03-20 18:23:18 -0700158# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000159#association_timeout = 30
160
Adam Gandelman4a48a602014-03-20 18:23:18 -0700161# Timeout for Ironic power transitions. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000162#power_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700163
Devananda van der Veend1e52a92015-04-13 12:58:49 -0700164# Timeout for unprovisioning an Ironic node. Takes longer since Kilo
165# as Ironic performs an extra step in Node cleaning. (integer value)
166#unprovision_timeout = 300
Adam Gandelman4a48a602014-03-20 18:23:18 -0700167
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300168
Sean Daguefc691e32014-01-03 08:51:54 -0500169[boto]
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400170
171#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000172# From tempest.config
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400173#
174
Matthew Treinishc603d162015-01-05 20:03:40 -0500175# EC2 URL (string value)
176#ec2_url = http://localhost:8773/services/Cloud
Sean Daguefc691e32014-01-03 08:51:54 -0500177
Matthew Treinishc603d162015-01-05 20:03:40 -0500178# S3 URL (string value)
179#s3_url = http://localhost:8080
Sean Daguefc691e32014-01-03 08:51:54 -0500180
Jon Grimm270bd7f2014-08-05 18:11:29 +0000181# AWS Secret Key (string value)
182#aws_secret = <None>
Sean Daguefc691e32014-01-03 08:51:54 -0500183
Matthew Treinishc603d162015-01-05 20:03:40 -0500184# AWS Access Key (string value)
185#aws_access = <None>
186
Jon Grimm270bd7f2014-08-05 18:11:29 +0000187# AWS Zone for EC2 tests (string value)
188#aws_zone = nova
Sean Daguefc691e32014-01-03 08:51:54 -0500189
Jon Grimm270bd7f2014-08-05 18:11:29 +0000190# S3 Materials Path (string value)
191#s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0
192
Matthew Treinishc603d162015-01-05 20:03:40 -0500193# ARI Ramdisk Image manifest (string value)
194#ari_manifest = cirros-0.3.0-x86_64-initrd.manifest.xml
195
196# AMI Machine Image manifest (string value)
197#ami_manifest = cirros-0.3.0-x86_64-blank.img.manifest.xml
198
199# AKI Kernel Image manifest (string value)
200#aki_manifest = cirros-0.3.0-x86_64-vmlinuz.manifest.xml
201
202# Instance type (string value)
203#instance_type = m1.tiny
204
205# boto Http socket timeout (integer value)
206#http_socket_timeout = 3
207
208# boto num_retries on error (integer value)
209#num_retries = 1
210
211# Status Change Timeout (integer value)
212#build_timeout = 60
213
214# Status Change Test Interval (integer value)
215#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -0500216
217
Matthew Treinish3d468112013-10-24 21:49:14 +0000218[compute]
219
220#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000221# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000222#
223
Matthew Treinishafcb6b42014-05-27 13:50:02 -0400224# Valid primary image reference to be used in tests. This is a
225# required option (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000226#image_ref = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000227
Jon Grimm270bd7f2014-08-05 18:11:29 +0000228# Valid secondary image reference to be used in tests. This is a
229# required option, but if only one image is available duplicate the
230# value of image_ref above (string value)
231#image_ref_alt = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000232
Matthew Treinishc603d162015-01-05 20:03:40 -0500233# Valid primary flavor to use in tests. (string value)
234#flavor_ref = 1
235
236# Valid secondary flavor to be used in tests. (string value)
237#flavor_ref_alt = 2
Matthew Treinish3d468112013-10-24 21:49:14 +0000238
Jon Grimm270bd7f2014-08-05 18:11:29 +0000239# User name used to authenticate to an instance. (string value)
240#image_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000241
Matthew Treinishc603d162015-01-05 20:03:40 -0500242# Password used to authenticate to an instance. (string value)
243#image_ssh_password = password
Matthew Treinish3d468112013-10-24 21:49:14 +0000244
Matthew Treinishc603d162015-01-05 20:03:40 -0500245# User name used to authenticate to an instance using the alternate
246# image. (string value)
247#image_alt_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000248
Matthew Treinishc603d162015-01-05 20:03:40 -0500249# Time in seconds between build status checks. (integer value)
250#build_interval = 1
Jon Grimm270bd7f2014-08-05 18:11:29 +0000251
Matthew Treinishc603d162015-01-05 20:03:40 -0500252# Timeout in seconds to wait for an instance to build. Other services
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200253# that do not define build_timeout will inherit this value. (integer
254# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500255#build_timeout = 300
Jon Grimm270bd7f2014-08-05 18:11:29 +0000256
Jon Grimm270bd7f2014-08-05 18:11:29 +0000257# Auth method used for authenticate to the instance. Valid choices
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000258# are: keypair, configured, adminpass and disabled. Keypair: start the
259# servers with a ssh keypair. Configured: use the configured user and
260# password. Adminpass: use the injected adminPass. Disabled: avoid
261# using ssh when it is an option. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000262#ssh_auth_method = keypair
263
Jon Grimm270bd7f2014-08-05 18:11:29 +0000264# How to connect to the instance? fixed: using the first ip belongs
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000265# the fixed network floating: creating and using a floating ip.
266# (string value)
267#ssh_connect_method = floating
JordanP5d29b2c2013-12-18 13:56:03 +0000268
Matthew Treinishc603d162015-01-05 20:03:40 -0500269# User name used to authenticate to an instance. (string value)
270#ssh_user = root
271
272# Timeout in seconds to wait for ping to succeed. (integer value)
273#ping_timeout = 120
274
Richard Wintersf87059b2015-02-17 11:46:54 -0500275# The packet size for ping packets originating from remote linux hosts
276# (integer value)
277#ping_size = 56
278
279# The number of ping packets originating from remote linux hosts
280# (integer value)
281#ping_count = 1
282
Jon Grimm270bd7f2014-08-05 18:11:29 +0000283# Timeout in seconds to wait for authentication to succeed. (integer
284# value)
285#ssh_timeout = 300
Matthew Treinish3d468112013-10-24 21:49:14 +0000286
Matthew Treinishc603d162015-01-05 20:03:40 -0500287# Additional wait time for clean state, when there is no OS-EXT-STS
288# extension available (integer value)
289#ready_wait = 0
290
291# Timeout in seconds to wait for output from ssh channel. (integer
292# value)
293#ssh_channel_timeout = 60
294
Matthew Treinish03feae02015-03-27 10:25:45 -0400295# Name of the fixed network that is visible to all test tenants. If
296# multiple networks are available for a tenant this is the network
297# which will be used for creating servers if tempest does not create a
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000298# network or a network is not specified elsewhere. It may be used for
299# ssh validation only if floating IPs are disabled. (string value)
Matthew Treinish03feae02015-03-27 10:25:45 -0400300#fixed_network_name = <None>
Matthew Treinishc603d162015-01-05 20:03:40 -0500301
302# Network used for SSH connections. Ignored if
Matthew Treinishe5cca002015-05-11 15:36:50 -0400303# use_floatingip_for_ssh=true or run_validation=false. (string value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500304#network_for_ssh = public
305
306# IP version used for SSH connections. (integer value)
307#ip_version_for_ssh = 4
Jon Grimm270bd7f2014-08-05 18:11:29 +0000308
309# Does SSH use Floating IPs? (boolean value)
310#use_floatingip_for_ssh = true
311
Matthew Treinishc603d162015-01-05 20:03:40 -0500312# Catalog type of the Compute service. (string value)
313#catalog_type = compute
314
315# The compute region name to use. If empty, the value of
316# identity.region is used instead. If no such region is found in the
317# service catalog, the first found one is used. (string value)
318#region =
319
320# The endpoint type to use for the compute service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400321# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500322#endpoint_type = publicURL
323
Jon Grimm270bd7f2014-08-05 18:11:29 +0000324# Expected device name when a volume is attached to an instance
Matthew Treinish3d468112013-10-24 21:49:14 +0000325# (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000326#volume_device_name = vdb
Sean Dague82190852014-05-24 07:42:59 -0400327
Matthew Treinishc603d162015-01-05 20:03:40 -0500328# Time in seconds before a shelved instance is eligible for removing
329# from a host. -1 never offload, 0 offload when shelved. This time
330# should be the same as the time of nova.conf, and some tests will run
331# for as long as the time. (integer value)
332#shelved_offload_time = 0
333
334# Unallocated floating IP range, which will be used to test the
335# floating IP bulk feature for CRUD operation. This block must not
336# overlap an existing floating IP pool. (string value)
337#floating_ip_range = 10.0.0.0/29
338
Sean Daguefc691e32014-01-03 08:51:54 -0500339
Sean Daguefc691e32014-01-03 08:51:54 -0500340[compute-feature-enabled]
Matthew Treinish3d468112013-10-24 21:49:14 +0000341
342#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000343# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000344#
345
Matthew Treinishc603d162015-01-05 20:03:40 -0500346# If false, skip disk config tests (boolean value)
347#disk_config = true
348
Jon Grimm270bd7f2014-08-05 18:11:29 +0000349# A list of enabled compute extensions with a special entry all which
350# indicates every extension is enabled. Each extension should be
351# specified with alias name. Empty list indicates all extensions are
352# disabled (list value)
353#api_extensions = all
Matthew Treinish3d468112013-10-24 21:49:14 +0000354
Jon Grimm270bd7f2014-08-05 18:11:29 +0000355# Does the test environment support changing the admin password?
356# (boolean value)
357#change_password = false
358
359# Does the test environment support obtaining instance serial console
360# output? (boolean value)
361#console_output = true
Matthew Treinish20866a22014-06-12 14:58:36 -0400362
Matthew Treinishc603d162015-01-05 20:03:40 -0500363# Does the test environment support resizing? (boolean value)
364#resize = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000365
Matthew Treinishc603d162015-01-05 20:03:40 -0500366# Does the test environment support pausing? (boolean value)
367#pause = true
Ghanshyam9c2e50d2014-07-22 21:32:05 +0900368
Matthew Treinishc603d162015-01-05 20:03:40 -0500369# Does the test environment support shelving/unshelving? (boolean
370# value)
371#shelve = true
372
373# Does the test environment support suspend/resume? (boolean value)
374#suspend = true
Adam Gandelman7186f7a2014-07-23 09:28:56 -0400375
Jon Grimm270bd7f2014-08-05 18:11:29 +0000376# Does the test environment support live migration available? (boolean
377# value)
Joe Gordon31a139a2014-11-17 16:39:04 -0800378#live_migration = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000379
Matthew Treinishc603d162015-01-05 20:03:40 -0500380# Does the test environment use block devices for live migration
381# (boolean value)
382#block_migration_for_live_migration = false
383
384# Does the test environment block migration support cinder iSCSI
Joe Gordon0a5788f2015-03-17 11:29:38 -0700385# volumes. Note, libvirt doesn't support this, see
386# https://bugs.launchpad.net/nova/+bug/1398999 (boolean value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500387#block_migrate_cinder_iscsi = false
388
Matt Riedemannbb9f7042015-03-03 08:53:11 -0800389# Does the test system allow live-migration of paused instances? Note,
390# this is more than just the ANDing of paused and live_migrate, but
391# all 3 should be set to True to run those tests (boolean value)
392#live_migrate_paused_instances = false
393
Matthew Treinishc603d162015-01-05 20:03:40 -0500394# Enable VNC console. This configuration value should be same as
395# [nova.vnc]->vnc_enabled in nova.conf (boolean value)
396#vnc_console = false
397
398# Enable Spice console. This configuration value should be same as
399# [nova.spice]->enabled in nova.conf (boolean value)
400#spice_console = false
Jon Grimm270bd7f2014-08-05 18:11:29 +0000401
402# Enable RDP console. This configuration value should be same as
403# [nova.rdp]->enabled in nova.conf (boolean value)
404#rdp_console = false
405
406# Does the test environment support instance rescue mode? (boolean
407# value)
408#rescue = true
409
Matthew Treinishc603d162015-01-05 20:03:40 -0500410# Enables returning of the instance password by the relevant server
411# API calls such as create, rebuild or rescue. (boolean value)
412#enable_instance_password = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000413
Matthew Treinishc603d162015-01-05 20:03:40 -0500414# Does the test environment support dynamic network interface
415# attachment? (boolean value)
416#interface_attach = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000417
418# Does the test environment support creating snapshot images of
419# running instances? (boolean value)
420#snapshot = true
421
Matthew Treinishdfd7ac02015-02-09 17:47:31 -0500422# Does the test environment have the ec2 api running? (boolean value)
423#ec2_api = true
424
Matt Riedemann17940732015-03-13 14:18:19 +0000425# Does Nova preserve preexisting ports from Neutron when deleting an
426# instance? This should be set to True if testing Kilo+ Nova. (boolean
427# value)
428#preserve_ports = false
429
Matt Riedemann79b3b492015-06-20 14:20:44 -0700430# Does the test environment support attaching an encrypted volume to a
431# running server instance? This may depend on the combination of
432# compute_driver in nova and the volume_driver(s) in cinder. (boolean
433# value)
434#attach_encrypted_volume = true
435
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100436
Julie Pichond1017642013-07-24 16:37:23 +0100437[dashboard]
Julie Pichond1017642013-07-24 16:37:23 +0100438
Matthew Treinish3d468112013-10-24 21:49:14 +0000439#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000440# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000441#
Julie Pichond1017642013-07-24 16:37:23 +0100442
Matthew Treinish3d468112013-10-24 21:49:14 +0000443# Where the dashboard can be found (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000444#dashboard_url = http://localhost/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900445
Matthew Treinish3d468112013-10-24 21:49:14 +0000446# Login page for the dashboard (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000447#login_url = http://localhost/auth/login/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900448
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900449
Sean Daguefc691e32014-01-03 08:51:54 -0500450[data_processing]
451
452#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000453# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500454#
455
456# Catalog type of the data processing service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000457#catalog_type = data_processing
Sean Daguefc691e32014-01-03 08:51:54 -0500458
Jon Grimm270bd7f2014-08-05 18:11:29 +0000459# The endpoint type to use for the data processing service. (string
460# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400461# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000462#endpoint_type = publicURL
JordanPfc62c902014-02-26 14:47:28 +0000463
Sean Daguefc691e32014-01-03 08:51:54 -0500464
Luigi Toscano14d172d2015-01-23 16:37:47 +0100465[data_processing-feature-enabled]
466
467#
468# From tempest.config
469#
470
471# List of enabled data processing plugins (list value)
472#plugins = vanilla,hdp
473
474
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800475[database]
476
477#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000478# From tempest.config
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800479#
480
481# Catalog type of the Database service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000482#catalog_type = database
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800483
Jon Grimm270bd7f2014-08-05 18:11:29 +0000484# Valid primary flavor to use in database tests. (string value)
485#db_flavor_ref = 1
Peter Stachowski320f9c72014-04-21 16:13:23 -0400486
Matthew Treinishc603d162015-01-05 20:03:40 -0500487# Current database version to use in database tests. (string value)
488#db_current_version = v1.0
489
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800490
Sean Daguefc691e32014-01-03 08:51:54 -0500491[debug]
492
493#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000494# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500495#
496
Jon Grimm270bd7f2014-08-05 18:11:29 +0000497# A regex to determine which requests should be traced. This is a
498# regex to match the caller for rest client requests to be able to
499# selectively trace calls out of specific classes and methods. It
500# largely exists for test development, and is not expected to be used
501# in a real deploy of tempest. This will be matched against the
502# discovered ClassName:method in the test environment. Expected
503# values for this field are: * ClassName:test_method_name - traces
504# one test_method * ClassName:setUp(Class) - traces specific setup
505# functions * ClassName:tearDown(Class) - traces specific teardown
506# functions * ClassName:_run_cleanups - traces the cleanup functions
507# If nothing is specified, this feature is not enabled. To trace
508# everything specify .* as the regex. (string value)
509#trace_requests =
Sean Daguec522c092014-03-24 10:43:22 -0400510
Sean Daguefc691e32014-01-03 08:51:54 -0500511
512[identity]
513
514#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000515# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500516#
517
Jon Grimm270bd7f2014-08-05 18:11:29 +0000518# Catalog type of the Identity service. (string value)
519#catalog_type = identity
520
521# Set to True if using self-signed SSL certificates. (boolean value)
522#disable_ssl_certificate_validation = false
523
Matthew Treinishc603d162015-01-05 20:03:40 -0500524# Specify a CA bundle file to use in verifying a TLS (https) server
525# certificate. (string value)
526#ca_certificates_file = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +0000527
528# Full URI of the OpenStack Identity API (Keystone), v2 (string value)
529#uri = <None>
530
531# Full URI of the OpenStack Identity API (Keystone), v3 (string value)
532#uri_v3 = <None>
533
Matthew Treinishc603d162015-01-05 20:03:40 -0500534# Identity API version to be used for authentication for API tests.
535# (string value)
536#auth_version = v2
537
538# The identity region name to use. Also used as the other services'
539# region name unless they are set explicitly. If no such region is
540# found in the service catalog, the first found one is used. (string
541# value)
542#region = RegionOne
543
544# The endpoint type to use for the identity service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400545# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500546#endpoint_type = publicURL
547
Jon Grimm270bd7f2014-08-05 18:11:29 +0000548# Username to use for Nova API requests. (string value)
549#username = <None>
Andrea Frittolib1b04bb2014-04-06 11:57:07 +0100550
Matthew Treinishc603d162015-01-05 20:03:40 -0500551# Tenant name to use for Nova API requests. (string value)
552#tenant_name = <None>
553
554# Role required to administrate keystone. (string value)
555#admin_role = admin
556
557# API key to use when authenticating. (string value)
558#password = <None>
559
560# Domain name for authentication (Keystone V3).The same domain applies
561# to user and project (string value)
562#domain_name = <None>
563
564# Username of alternate user to use for Nova API requests. (string
565# value)
566#alt_username = <None>
567
568# Alternate user's Tenant name to use for Nova API requests. (string
569# value)
570#alt_tenant_name = <None>
571
572# API key to use when authenticating as alternate user. (string value)
573#alt_password = <None>
574
575# Alternate domain name for authentication (Keystone V3).The same
576# domain applies to user and project (string value)
577#alt_domain_name = <None>
578
579# Administrative Username to use for Keystone API requests. (string
580# value)
581#admin_username = <None>
582
583# Administrative Tenant name to use for Keystone API requests. (string
584# value)
585#admin_tenant_name = <None>
586
587# API key to use when authenticating as admin. (string value)
588#admin_password = <None>
589
590# Admin domain name for authentication (Keystone V3).The same domain
591# applies to user and project (string value)
592#admin_domain_name = <None>
593
Martin Pavlasek4c3f2ab2014-04-15 17:15:15 +0200594# ID of the default domain (string value)
595#default_domain_id = default
596
Sean Daguefc691e32014-01-03 08:51:54 -0500597
Matthew Treinishd5021a72014-01-09 18:42:51 +0000598[identity-feature-enabled]
599
600#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000601# From tempest.config
Matthew Treinishd5021a72014-01-09 18:42:51 +0000602#
603
Matthew Treinishc603d162015-01-05 20:03:40 -0500604# Does the identity service have delegation and impersonation enabled
605# (boolean value)
606#trust = true
607
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000608# Is the v2 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000609#api_v2 = true
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000610
611# Is the v3 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000612#api_v3 = true
613
Matthew Treinishd5021a72014-01-09 18:42:51 +0000614
Sean Daguefc691e32014-01-03 08:51:54 -0500615[image]
616
617#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000618# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500619#
620
621# Catalog type of the Image service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000622#catalog_type = image
Sean Daguefc691e32014-01-03 08:51:54 -0500623
Matthew Treinishc603d162015-01-05 20:03:40 -0500624# The image region name to use. If empty, the value of identity.region
625# is used instead. If no such region is found in the service catalog,
626# the first found one is used. (string value)
627#region =
628
Jon Grimm270bd7f2014-08-05 18:11:29 +0000629# The endpoint type to use for the image service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400630# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000631#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
bkopilov81aaae72015-05-15 23:46:25 +0300657# Is the deactivate-image feature enabled. The feature has been
658# integrated since Kilo. (boolean value)
659#deactivate_image = false
660
Sean Daguefc691e32014-01-03 08:51:54 -0500661
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000662[input-scenario]
663
664#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000665# From tempest.config
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000666#
667
Jon Grimm270bd7f2014-08-05 18:11:29 +0000668# Matching images become parameters for scenario tests (string value)
669#image_regex = ^cirros-0.3.1-x86_64-uec$
670
Matthew Treinishc603d162015-01-05 20:03:40 -0500671# Matching flavors become parameters for scenario tests (string value)
672#flavor_regex = ^m1.nano$
673
Jon Grimm270bd7f2014-08-05 18:11:29 +0000674# SSH verification in tests is skippedfor matching images (string
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000675# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000676#non_ssh_image_regex = ^.*[Ww]in.*$
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000677
Jon Grimm270bd7f2014-08-05 18:11:29 +0000678# List of user mapped to regex to matching image names. (string value)
Marc Koderer07f5a522015-03-27 15:02:41 +0100679#ssh_user_regex = [["^.*[Cc]irros.*$", "cirros"]]
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000680
681
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300682[messaging]
683
684#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000685# From tempest.config
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300686#
687
688# Catalog type of the Messaging service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000689#catalog_type = messaging
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300690
Matthew Treinishc603d162015-01-05 20:03:40 -0500691# The maximum number of queue records per page when listing queues
692# (integer value)
693#max_queues_per_page = 20
Jon Grimm270bd7f2014-08-05 18:11:29 +0000694
Matthew Treinishc603d162015-01-05 20:03:40 -0500695# The maximum metadata size for a queue (integer value)
696#max_queue_metadata = 65536
Jon Grimm270bd7f2014-08-05 18:11:29 +0000697
698# The maximum number of queue message per page when listing (or)
699# posting messages (integer value)
700#max_messages_per_page = 20
701
Matthew Treinishc603d162015-01-05 20:03:40 -0500702# The maximum size of a message body (integer value)
703#max_message_size = 262144
Jon Grimm270bd7f2014-08-05 18:11:29 +0000704
Matthew Treinishc603d162015-01-05 20:03:40 -0500705# The maximum number of messages per claim (integer value)
706#max_messages_per_claim = 20
707
708# The maximum ttl for a message (integer value)
709#max_message_ttl = 1209600
710
711# The maximum ttl for a claim (integer value)
712#max_claim_ttl = 43200
713
714# The maximum grace period for a claim (integer value)
715#max_claim_grace = 43200
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300716
717
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100718[negative]
719
720#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000721# From tempest.config
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100722#
723
724# Test generator class for all negative tests (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000725#test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100726
727
Sean Daguefc691e32014-01-03 08:51:54 -0500728[network]
729
730#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000731# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500732#
733
734# Catalog type of the Neutron service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000735#catalog_type = network
736
Sean Daguefc691e32014-01-03 08:51:54 -0500737# The network region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +0000738# identity.region is used instead. If no such region is found in the
739# service catalog, the first found one is used. (string value)
740#region =
Sean Daguefc691e32014-01-03 08:51:54 -0500741
Matthew Treinishc603d162015-01-05 20:03:40 -0500742# The endpoint type to use for the network service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400743# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500744#endpoint_type = publicURL
745
Jon Grimm270bd7f2014-08-05 18:11:29 +0000746# The cidr block to allocate tenant ipv4 subnets from (string value)
747#tenant_network_cidr = 10.100.0.0/16
Sean Daguefc691e32014-01-03 08:51:54 -0500748
Henry Gessauffda37a2014-01-16 11:17:55 -0500749# The mask bits for tenant ipv4 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000750#tenant_network_mask_bits = 28
Sean Daguefc691e32014-01-03 08:51:54 -0500751
Jon Grimm270bd7f2014-08-05 18:11:29 +0000752# The cidr block to allocate tenant ipv6 subnets from (string value)
753#tenant_network_v6_cidr = 2003::/48
Henry Gessauffda37a2014-01-16 11:17:55 -0500754
755# The mask bits for tenant ipv6 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000756#tenant_network_v6_mask_bits = 64
Henry Gessauffda37a2014-01-16 11:17:55 -0500757
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000758# Whether tenant networks can be reached directly from the test
759# client. This must be set to True when the 'fixed' ssh_connect_method
760# is selected. (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000761#tenant_networks_reachable = false
Attila Fazekas640392b2014-06-12 15:58:10 +0200762
Matthew Treinishc603d162015-01-05 20:03:40 -0500763# Id of the public network that provides external connectivity (string
764# value)
765#public_network_id =
766
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000767# Default floating network name. Used to allocate floating IPs when
768# neutron is enabled. (string value)
769#floating_network_name = <None>
770
Matthew Treinishc603d162015-01-05 20:03:40 -0500771# Id of the public router that provides external connectivity. This
772# should only be used when Neutron's 'allow_overlapping_ips' is set to
773# 'False' in neutron.conf. usually not needed past 'Grizzly' release
774# (string value)
775#public_router_id =
776
777# Timeout in seconds to wait for network operation to complete.
778# (integer value)
779#build_timeout = 300
780
781# Time in seconds between network operation status checks. (integer
782# value)
783#build_interval = 1
784
785# List of dns servers which should be used for subnet creation (list
786# value)
787#dns_servers = 8.8.8.8,8.8.4.4
788
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200789# vnic_type to use when Launching instances with pre-configured ports.
790# Supported ports are: ['normal','direct','macvtap'] (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400791# Allowed values: <None>, normal, direct, macvtap
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200792#port_vnic_type = <None>
793
Sean Daguefc691e32014-01-03 08:51:54 -0500794
795[network-feature-enabled]
796
797#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000798# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500799#
800
Matthew Treinishc603d162015-01-05 20:03:40 -0500801# Allow the execution of IPv6 tests (boolean value)
802#ipv6 = true
803
Jon Grimm270bd7f2014-08-05 18:11:29 +0000804# A list of enabled network extensions with a special entry all which
805# indicates every extension is enabled. Empty list indicates all
806# extensions are disabled (list value)
807#api_extensions = all
808
Jon Grimm270bd7f2014-08-05 18:11:29 +0000809# Allow the execution of IPv6 subnet tests that use the extended IPv6
810# attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
811#ipv6_subnet_attributes = false
Sean M. Collinsdd27a4d2014-05-13 10:33:15 -0400812
Itzik Brownbeb30d32015-03-29 09:42:54 +0300813# Does the test environment support changing port admin state (boolean
814# value)
815#port_admin_state_change = true
816
Sean Daguefc691e32014-01-03 08:51:54 -0500817
818[object-storage]
819
820#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000821# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500822#
823
824# Catalog type of the Object-Storage service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000825#catalog_type = object-store
Sean Daguefc691e32014-01-03 08:51:54 -0500826
Matthew Treinishc603d162015-01-05 20:03:40 -0500827# The object-storage region name to use. If empty, the value of
828# identity.region is used instead. If no such region is found in the
829# service catalog, the first found one is used. (string value)
830#region =
JordanP5d29b2c2013-12-18 13:56:03 +0000831
Jon Grimm270bd7f2014-08-05 18:11:29 +0000832# The endpoint type to use for the object-store service. (string
833# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400834# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000835#endpoint_type = publicURL
Sean Daguefc691e32014-01-03 08:51:54 -0500836
Matthew Treinishc603d162015-01-05 20:03:40 -0500837# Number of seconds to time on waiting for a container to container
838# synchronization complete. (integer value)
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900839#container_sync_timeout = 600
Matthew Treinishc603d162015-01-05 20:03:40 -0500840
841# Number of seconds to wait while looping to check the status of a
842# container to container synchronization (integer value)
843#container_sync_interval = 5
844
Jon Grimm270bd7f2014-08-05 18:11:29 +0000845# Role to add to users created for swift tests to enable creating
846# containers (string value)
847#operator_role = Member
Sean Daguefc691e32014-01-03 08:51:54 -0500848
Matthew Treinish998c91d2014-03-01 12:39:49 -0500849# User role that has reseller admin (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000850#reseller_admin_role = ResellerAdmin
Matthew Treinish998c91d2014-03-01 12:39:49 -0500851
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900852# Name of sync realm. A sync realm is a set of clusters that have
853# agreed to allow container syncing with each other. Set the same
854# realm name as Swift's container-sync-realms.conf (string value)
855#realm_name = realm1
856
857# One name of cluster which is set in the realm whose name is set in
858# 'realm_name' item in this file. Set the same cluster name as Swift's
859# container-sync-realms.conf (string value)
860#cluster_name = name1
861
Sean Daguefc691e32014-01-03 08:51:54 -0500862
863[object-storage-feature-enabled]
864
865#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000866# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500867#
868
Jon Grimm270bd7f2014-08-05 18:11:29 +0000869# A list of the enabled optional discoverable apis. A single entry,
870# all, indicates that all of these features are expected to be enabled
871# (list value)
872#discoverable_apis = all
873
Matthew Treinishc603d162015-01-05 20:03:40 -0500874# Execute (old style) container-sync tests (boolean value)
875#container_sync = true
876
Jon Grimm270bd7f2014-08-05 18:11:29 +0000877# Execute object-versioning tests (boolean value)
878#object_versioning = true
Daisuke Morita20a183f2014-08-25 14:43:36 +0900879
Matthew Treinishc603d162015-01-05 20:03:40 -0500880# Execute discoverability tests (boolean value)
881#discoverability = true
882
Sean Daguefc691e32014-01-03 08:51:54 -0500883
Matthew Treinish3d468112013-10-24 21:49:14 +0000884[orchestration]
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900885
Matthew Treinish3d468112013-10-24 21:49:14 +0000886#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000887# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000888#
Attila Fazekas86950732013-06-08 09:33:08 +0200889
Matthew Treinishc603d162015-01-05 20:03:40 -0500890# Catalog type of the Orchestration service. (string value)
891#catalog_type = orchestration
892
893# The orchestration region name to use. If empty, the value of
894# identity.region is used instead. If no such region is found in the
895# service catalog, the first found one is used. (string value)
896#region =
897
898# The endpoint type to use for the orchestration service. (string
899# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400900# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500901#endpoint_type = publicURL
902
Matthew Treinishdb9721d2015-03-18 14:21:28 -0400903# Role required for users to be able to manage stacks (string value)
904#stack_owner_role = heat_stack_owner
905
Jon Grimm270bd7f2014-08-05 18:11:29 +0000906# Time in seconds between build status checks. (integer value)
907#build_interval = 1
908
909# Timeout in seconds to wait for a stack to build. (integer value)
910#build_timeout = 1200
911
Matthew Treinishc603d162015-01-05 20:03:40 -0500912# Instance type for tests. Needs to be big enough for a full OS plus
913# the test workload (string value)
914#instance_type = m1.micro
Jon Grimm270bd7f2014-08-05 18:11:29 +0000915
Jon Grimm270bd7f2014-08-05 18:11:29 +0000916# Name of existing keypair to launch servers with. (string value)
917#keypair_name = <None>
918
919# Value must match heat configuration of the same name. (integer
920# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500921#max_template_size = 524288
Jon Grimm270bd7f2014-08-05 18:11:29 +0000922
923# Value must match heat configuration of the same name. (integer
924# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500925#max_resources_per_stack = 1000
Steven Hardyfdc6bd72014-03-21 16:56:04 +0000926
Matthew Treinish3d468112013-10-24 21:49:14 +0000927
Doug Hellmann583ce2c2015-03-11 14:55:46 +0000928[oslo_concurrency]
929
930#
931# From oslo.concurrency
932#
933
934# Enables or disables inter-process locks. (boolean value)
935# Deprecated group/name - [DEFAULT]/disable_process_locking
936#disable_process_locking = false
937
938# Directory to use for lock files. For security, the specified
939# directory should only be writable by the user running the processes
940# that need locking. Defaults to environment variable OSLO_LOCK_PATH.
941# If external locks are used, a lock path must be set. (string value)
942# Deprecated group/name - [DEFAULT]/lock_path
943#lock_path = <None>
944
945
Sean Daguefc691e32014-01-03 08:51:54 -0500946[scenario]
Matthew Treinish3d468112013-10-24 21:49:14 +0000947
948#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000949# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000950#
951
Matthew Treinishc603d162015-01-05 20:03:40 -0500952# Directory containing image files (string value)
953#img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
954
955# Image file name (string value)
956# Deprecated group/name - [DEFAULT]/qcow2_img_file
957#img_file = cirros-0.3.1-x86_64-disk.img
958
959# Image disk format (string value)
960#img_disk_format = qcow2
961
962# Image container format (string value)
963#img_container_format = bare
Jon Grimm270bd7f2014-08-05 18:11:29 +0000964
Evgeny Antyshev7ba0d5f2015-04-28 13:18:07 +0000965# Glance image properties. Use for custom images which require them
966# (dict value)
967#img_properties = <None>
968
Jon Grimm270bd7f2014-08-05 18:11:29 +0000969# AMI image file name (string value)
970#ami_img_file = cirros-0.3.1-x86_64-blank.img
971
972# ARI image file name (string value)
973#ari_img_file = cirros-0.3.1-x86_64-initrd
974
Matthew Treinishc603d162015-01-05 20:03:40 -0500975# AKI image file name (string value)
976#aki_img_file = cirros-0.3.1-x86_64-vmlinuz
Jon Grimm270bd7f2014-08-05 18:11:29 +0000977
Matthew Treinishc603d162015-01-05 20:03:40 -0500978# ssh username for the image file (string value)
979#ssh_user = cirros
Alessandro Pilottib7c1daa2014-08-16 14:24:13 +0300980
Jon Grimm270bd7f2014-08-05 18:11:29 +0000981# specifies how many resources to request at once. Used for large
982# operations testing. (integer value)
983#large_ops_number = 0
Sean Daguefc691e32014-01-03 08:51:54 -0500984
Yair Fried413bf2d2014-11-19 17:07:11 +0200985# DHCP client used by images to renew DCHP lease. If left empty,
986# update operation will be skipped. Supported clients: "udhcpc",
987# "dhclient" (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400988# Allowed values: udhcpc, dhclient
Yair Fried413bf2d2014-11-19 17:07:11 +0200989#dhcp_client = udhcpc
990
Matthew Treinish3d468112013-10-24 21:49:14 +0000991
992[service_available]
993
994#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000995# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000996#
997
Jon Grimm270bd7f2014-08-05 18:11:29 +0000998# Whether or not cinder is expected to be available (boolean value)
999#cinder = true
Matthew Treinish3d468112013-10-24 21:49:14 +00001000
Jon Grimm270bd7f2014-08-05 18:11:29 +00001001# Whether or not neutron is expected to be available (boolean value)
1002#neutron = false
Matthew Treinish3d468112013-10-24 21:49:14 +00001003
Matthew Treinishc603d162015-01-05 20:03:40 -05001004# Whether or not glance is expected to be available (boolean value)
1005#glance = true
1006
1007# Whether or not swift is expected to be available (boolean value)
1008#swift = true
1009
Jon Grimm270bd7f2014-08-05 18:11:29 +00001010# Whether or not nova is expected to be available (boolean value)
1011#nova = true
Matthew Treinish3d468112013-10-24 21:49:14 +00001012
Matthew Treinishc603d162015-01-05 20:03:40 -05001013# Whether or not Heat is expected to be available (boolean value)
1014#heat = false
1015
1016# Whether or not Ceilometer is expected to be available (boolean
1017# value)
1018#ceilometer = true
1019
1020# Whether or not Horizon is expected to be available (boolean value)
1021#horizon = true
1022
Jon Grimm270bd7f2014-08-05 18:11:29 +00001023# Whether or not Sahara is expected to be available (boolean value)
1024#sahara = false
Matthew Treinishe3d26142013-11-26 19:14:58 +00001025
Matthew Treinishc603d162015-01-05 20:03:40 -05001026# Whether or not Ironic is expected to be available (boolean value)
1027#ironic = false
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +03001028
Jon Grimm270bd7f2014-08-05 18:11:29 +00001029# Whether or not Trove is expected to be available (boolean value)
1030#trove = false
Nikhil Manchandadd6886f2014-03-03 01:58:45 -08001031
Jon Grimm270bd7f2014-08-05 18:11:29 +00001032# Whether or not Zaqar is expected to be available (boolean value)
1033#zaqar = false
Malini Kamalambal6e7b3b82014-02-06 06:49:04 -05001034
Matthew Treinish3d468112013-10-24 21:49:14 +00001035
Sean Daguefc691e32014-01-03 08:51:54 -05001036[stress]
1037
1038#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001039# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001040#
1041
Matthew Treinishc603d162015-01-05 20:03:40 -05001042# Directory containing log files on the compute nodes (string value)
1043#nova_logdir = <None>
1044
1045# Maximum number of instances to create during test. (integer value)
1046#max_instances = 16
1047
Jon Grimm270bd7f2014-08-05 18:11:29 +00001048# Controller host. (string value)
1049#controller = <None>
Sean Daguefc691e32014-01-03 08:51:54 -05001050
Matthew Treinishc603d162015-01-05 20:03:40 -05001051# Controller host. (string value)
1052#target_controller = <None>
1053
1054# ssh user. (string value)
1055#target_ssh_user = <None>
1056
1057# Path to private key. (string value)
1058#target_private_key_path = <None>
1059
1060# regexp for list of log files. (string value)
1061#target_logfiles = <None>
1062
1063# time (in seconds) between log file error checks. (integer value)
1064#log_check_interval = 60
1065
Jon Grimm270bd7f2014-08-05 18:11:29 +00001066# The number of threads created while stress test. (integer value)
1067#default_thread_number_per_action = 4
1068
Jon Grimm270bd7f2014-08-05 18:11:29 +00001069# Prevent the cleaning (tearDownClass()) between each stress test run
1070# if an exception occurs during this run. (boolean value)
1071#leave_dirty_stack = false
1072
Matthew Treinishc603d162015-01-05 20:03:40 -05001073# Allows a full cleaning process after a stress test. Caution : this
1074# cleanup will remove every objects of every tenant. (boolean value)
1075#full_clean_stack = false
Julien Leloupa5ee5422014-02-13 14:29:02 +01001076
Sean Daguefc691e32014-01-03 08:51:54 -05001077
1078[telemetry]
1079
1080#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001081# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001082#
1083
1084# Catalog type of the Telemetry service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001085#catalog_type = metering
Sean Daguefc691e32014-01-03 08:51:54 -05001086
Jon Grimm270bd7f2014-08-05 18:11:29 +00001087# The endpoint type to use for the telemetry service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001088# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +00001089#endpoint_type = publicURL
1090
1091# This variable is used as flag to enable notification tests (boolean
JordanPfc62c902014-02-26 14:47:28 +00001092# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001093#too_slow_to_test = true
Vadim Rovachev7bcea352013-12-26 15:56:17 +04001094
Sean Daguefc691e32014-01-03 08:51:54 -05001095
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001096[validation]
1097
1098#
1099# From tempest.config
1100#
1101
Matthew Treinishe5cca002015-05-11 15:36:50 -04001102# Enable ssh on created servers and creation of additional validation
1103# resources to enable remote access (boolean value)
1104# Deprecated group/name - [compute]/run_ssh
1105#run_validation = false
1106
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001107# Default IP type used for validation: -fixed: uses the first IP
1108# belonging to the fixed network -floating: creates and uses a
1109# floating IP (string value)
1110# Allowed values: fixed, floating
1111#connect_method = floating
1112
1113# Default authentication method to the instance. Only ssh via keypair
1114# is supported for now. Additional methods will be handled in a
1115# separate spec. (string value)
1116# Allowed values: keypair
1117#auth_method = keypair
1118
1119# Default IP version for ssh connections. (integer value)
1120#ip_version_for_ssh = 4
1121
1122# Timeout in seconds to wait for ping to succeed. (integer value)
1123#ping_timeout = 120
1124
1125# Timeout in seconds to wait for the TCP connection to be successful.
1126# (integer value)
1127#connect_timeout = 60
1128
1129# Timeout in seconds to wait for the ssh banner. (integer value)
1130#ssh_timeout = 300
1131
1132
Sean Daguefc691e32014-01-03 08:51:54 -05001133[volume]
1134
1135#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001136# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001137#
1138
Jon Grimm270bd7f2014-08-05 18:11:29 +00001139# Time in seconds between volume availability checks. (integer value)
1140#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -05001141
Eric Harney9b1f89c2014-10-14 14:40:19 -04001142# Timeout in seconds to wait for a volume to become available.
Sean Daguefc691e32014-01-03 08:51:54 -05001143# (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001144#build_timeout = 300
Sean Daguefc691e32014-01-03 08:51:54 -05001145
1146# Catalog type of the Volume Service (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001147#catalog_type = volume
1148
Sean Daguefc691e32014-01-03 08:51:54 -05001149# The volume region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +00001150# identity.region is used instead. If no such region is found in the
1151# service catalog, the first found one is used. (string value)
1152#region =
1153
Matthew Treinishc603d162015-01-05 20:03:40 -05001154# The endpoint type to use for the volume service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001155# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -05001156#endpoint_type = publicURL
1157
1158# Name of the backend1 (must be declared in cinder.conf) (string
1159# value)
1160#backend1_name = BACKEND_1
1161
1162# Name of the backend2 (must be declared in cinder.conf) (string
1163# value)
1164#backend2_name = BACKEND_2
1165
Jon Grimm270bd7f2014-08-05 18:11:29 +00001166# Backend protocol to target when creating volume types (string value)
1167#storage_protocol = iSCSI
1168
1169# Backend vendor to target when creating volume types (string value)
1170#vendor_name = Open Source
1171
Matthew Treinishc603d162015-01-05 20:03:40 -05001172# Disk format to use when copying a volume to image (string value)
1173#disk_format = raw
1174
Jon Grimm270bd7f2014-08-05 18:11:29 +00001175# Default size in GB for volumes created by volumes tests (integer
Sean Daguefc691e32014-01-03 08:51:54 -05001176# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001177#volume_size = 1
Jerry Cai9733d0e2014-03-19 15:50:49 +08001178
Sean Daguefc691e32014-01-03 08:51:54 -05001179
1180[volume-feature-enabled]
1181
1182#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001183# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001184#
1185
Matthew Treinishc603d162015-01-05 20:03:40 -05001186# Runs Cinder multi-backend test (requires 2 backends) (boolean value)
1187#multi_backend = false
1188
1189# Runs Cinder volumes backup test (boolean value)
1190#backup = true
1191
1192# Runs Cinder volume snapshot test (boolean value)
1193#snapshot = true
1194
Jon Grimm270bd7f2014-08-05 18:11:29 +00001195# A list of enabled volume extensions with a special entry all which
1196# indicates every extension is enabled. Empty list indicates all
1197# extensions are disabled (list value)
1198#api_extensions = all
Zhi Kun Liude25c022014-02-14 13:25:19 +08001199
Sean Daguefc691e32014-01-03 08:51:54 -05001200# Is the v1 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001201#api_v1 = true
Sean Daguefc691e32014-01-03 08:51:54 -05001202
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +08001203# Is the v2 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001204#api_v2 = true
bkopilov8a657ae2015-05-11 11:45:23 +03001205
1206# Update bootable status of a volume Not implemented on icehouse
1207# (boolean value)
1208#bootable = false