blob: 1f287c8f9cd7ff3847a6e25d82366bfa6b1e2952 [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
Ken'ichi Ohmichi3ecece82015-06-23 23:57:08 +000042# Use syslog for logging. Existing syslog format is DEPRECATED and
43# will be changed later 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# The format for an instance that is passed with the log message.
81# (string value)
82#instance_format = "[instance: %(uuid)s] "
83
84# The format for an instance UUID that is passed with the log message.
85# (string value)
86#instance_uuid_format = "[instance: %(uuid)s] "
87
David Kranz7068d882015-05-27 16:54:15 -040088# Enables or disables fatal status of deprecations. (boolean value)
89#fatal_deprecations = false
90
Marc Kodererb714de52013-08-08 09:21:46 +020091
Matthew Treinishc791ac42014-07-16 09:15:23 -040092[auth]
93
94#
Jon Grimm270bd7f2014-08-05 18:11:29 +000095# From tempest.config
Matthew Treinishc791ac42014-07-16 09:15:23 -040096#
97
Matthew Treinishc603d162015-01-05 20:03:40 -050098# Path to the yaml file that contains the list of credentials to use
Matthew Treinishfc7cd8f2015-03-30 11:51:55 -040099# for running tests. If used when running in parallel you have to make
100# sure sufficient credentials are provided in the accounts file. For
101# example if no tests with roles are being run it requires at least `2
102# * CONC` distinct accounts configured in the `test_accounts_file`,
103# with CONC == the number of concurrent test processes. (string value)
104#test_accounts_file = <None>
Matthew Treinishc603d162015-01-05 20:03:40 -0500105
Jon Grimm270bd7f2014-08-05 18:11:29 +0000106# Allows test cases to create/destroy tenants and users. This option
107# requires that OpenStack Identity API admin credentials are known. If
108# false, isolated test cases and parallel execution, can still be
109# achieved configuring a list of test accounts (boolean value)
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100110# Deprecated group/name - [compute]/allow_tenant_isolation
111# Deprecated group/name - [orchestration]/allow_tenant_isolation
Attila Fazekas5dda1582015-02-18 17:16:02 +0100112#allow_tenant_isolation = true
Andrea Frittoli8283b4e2014-07-17 13:28:58 +0100113
Matthew Treinish167b2be2015-01-15 17:20:27 -0500114# Roles to assign to all users created by tempest (list value)
115#tempest_roles =
116
Andrea Frittolic3280152015-02-26 12:42:34 +0000117# Only applicable when identity.auth_version is v3.Domain within which
118# isolated credentials are provisioned.The default "None" means that
119# the domain from theadmin user is used instead. (string value)
120#tenant_isolation_domain_name = <None>
121
Matthew Treinish2219d382015-04-24 10:33:04 -0400122# If allow_tenant_isolation is set to True and Neutron is enabled
123# Tempest will try to create a useable network, subnet, and router
124# when needed for each tenant it creates. However in some neutron
125# configurations, like with VLAN provider networks, this doesn't work.
126# So if set to False the isolated networks will not be created
127# (boolean value)
128#create_isolated_networks = true
129
Matthew Treinishc791ac42014-07-16 09:15:23 -0400130
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300131[baremetal]
132
133#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000134# From tempest.config
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300135#
136
Matthew Treinishc603d162015-01-05 20:03:40 -0500137# Catalog type of the baremetal provisioning service (string value)
138#catalog_type = baremetal
139
140# Whether the Ironic nova-compute driver is enabled (boolean value)
141#driver_enabled = false
142
143# Driver name which Ironic uses (string value)
144#driver = fake
145
146# The endpoint type to use for the baremetal provisioning service
147# (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400148# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500149#endpoint_type = publicURL
150
Jon Grimm270bd7f2014-08-05 18:11:29 +0000151# Timeout for Ironic node to completely provision (integer value)
152#active_timeout = 300
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300153
Jon Grimm270bd7f2014-08-05 18:11:29 +0000154# Timeout for association of Nova instance and Ironic node (integer
Adam Gandelman4a48a602014-03-20 18:23:18 -0700155# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000156#association_timeout = 30
157
Adam Gandelman4a48a602014-03-20 18:23:18 -0700158# Timeout for Ironic power transitions. (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000159#power_timeout = 60
Adam Gandelman4a48a602014-03-20 18:23:18 -0700160
Devananda van der Veend1e52a92015-04-13 12:58:49 -0700161# Timeout for unprovisioning an Ironic node. Takes longer since Kilo
162# as Ironic performs an extra step in Node cleaning. (integer value)
163#unprovision_timeout = 300
Adam Gandelman4a48a602014-03-20 18:23:18 -0700164
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300165
Sean Daguefc691e32014-01-03 08:51:54 -0500166[boto]
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400167
168#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000169# From tempest.config
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400170#
171
Matthew Treinishc603d162015-01-05 20:03:40 -0500172# EC2 URL (string value)
173#ec2_url = http://localhost:8773/services/Cloud
Sean Daguefc691e32014-01-03 08:51:54 -0500174
Matthew Treinishc603d162015-01-05 20:03:40 -0500175# S3 URL (string value)
176#s3_url = http://localhost:8080
Sean Daguefc691e32014-01-03 08:51:54 -0500177
Jon Grimm270bd7f2014-08-05 18:11:29 +0000178# AWS Secret Key (string value)
179#aws_secret = <None>
Sean Daguefc691e32014-01-03 08:51:54 -0500180
Matthew Treinishc603d162015-01-05 20:03:40 -0500181# AWS Access Key (string value)
182#aws_access = <None>
183
Jon Grimm270bd7f2014-08-05 18:11:29 +0000184# AWS Zone for EC2 tests (string value)
185#aws_zone = nova
Sean Daguefc691e32014-01-03 08:51:54 -0500186
Jon Grimm270bd7f2014-08-05 18:11:29 +0000187# S3 Materials Path (string value)
188#s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0
189
Matthew Treinishc603d162015-01-05 20:03:40 -0500190# ARI Ramdisk Image manifest (string value)
191#ari_manifest = cirros-0.3.0-x86_64-initrd.manifest.xml
192
193# AMI Machine Image manifest (string value)
194#ami_manifest = cirros-0.3.0-x86_64-blank.img.manifest.xml
195
196# AKI Kernel Image manifest (string value)
197#aki_manifest = cirros-0.3.0-x86_64-vmlinuz.manifest.xml
198
199# Instance type (string value)
200#instance_type = m1.tiny
201
202# boto Http socket timeout (integer value)
203#http_socket_timeout = 3
204
205# boto num_retries on error (integer value)
206#num_retries = 1
207
208# Status Change Timeout (integer value)
209#build_timeout = 60
210
211# Status Change Test Interval (integer value)
212#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -0500213
214
Matthew Treinish3d468112013-10-24 21:49:14 +0000215[compute]
216
217#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000218# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000219#
220
Matthew Treinishafcb6b42014-05-27 13:50:02 -0400221# Valid primary image reference to be used in tests. This is a
222# required option (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000223#image_ref = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000224
Jon Grimm270bd7f2014-08-05 18:11:29 +0000225# Valid secondary image reference to be used in tests. This is a
226# required option, but if only one image is available duplicate the
227# value of image_ref above (string value)
228#image_ref_alt = <None>
Matthew Treinish3d468112013-10-24 21:49:14 +0000229
Matthew Treinishc603d162015-01-05 20:03:40 -0500230# Valid primary flavor to use in tests. (string value)
231#flavor_ref = 1
232
233# Valid secondary flavor to be used in tests. (string value)
234#flavor_ref_alt = 2
Matthew Treinish3d468112013-10-24 21:49:14 +0000235
Jon Grimm270bd7f2014-08-05 18:11:29 +0000236# User name used to authenticate to an instance. (string value)
237#image_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000238
Matthew Treinishc603d162015-01-05 20:03:40 -0500239# Password used to authenticate to an instance. (string value)
240#image_ssh_password = password
Matthew Treinish3d468112013-10-24 21:49:14 +0000241
Matthew Treinishc603d162015-01-05 20:03:40 -0500242# User name used to authenticate to an instance using the alternate
243# image. (string value)
244#image_alt_ssh_user = root
Matthew Treinish3d468112013-10-24 21:49:14 +0000245
Matthew Treinishc603d162015-01-05 20:03:40 -0500246# Time in seconds between build status checks. (integer value)
247#build_interval = 1
Jon Grimm270bd7f2014-08-05 18:11:29 +0000248
Matthew Treinishc603d162015-01-05 20:03:40 -0500249# Timeout in seconds to wait for an instance to build. Other services
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200250# that do not define build_timeout will inherit this value. (integer
251# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500252#build_timeout = 300
Jon Grimm270bd7f2014-08-05 18:11:29 +0000253
David Kranz968f1b32015-06-18 16:58:18 -0400254# Shell fragments to use before executing a command when sshing to a
255# guest. (string value)
256#ssh_shell_prologue = set -eu -o pipefail; PATH=$$PATH:/sbin;
257
Jon Grimm270bd7f2014-08-05 18:11:29 +0000258# Auth method used for authenticate to the instance. Valid choices
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000259# are: keypair, configured, adminpass and disabled. Keypair: start the
260# servers with a ssh keypair. Configured: use the configured user and
261# password. Adminpass: use the injected adminPass. Disabled: avoid
262# using ssh when it is an option. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000263#ssh_auth_method = keypair
264
Jon Grimm270bd7f2014-08-05 18:11:29 +0000265# How to connect to the instance? fixed: using the first ip belongs
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000266# the fixed network floating: creating and using a floating ip.
267# (string value)
268#ssh_connect_method = floating
JordanP5d29b2c2013-12-18 13:56:03 +0000269
Matthew Treinishc603d162015-01-05 20:03:40 -0500270# User name used to authenticate to an instance. (string value)
271#ssh_user = root
272
273# Timeout in seconds to wait for ping to succeed. (integer value)
274#ping_timeout = 120
275
Richard Wintersf87059b2015-02-17 11:46:54 -0500276# The packet size for ping packets originating from remote linux hosts
277# (integer value)
278#ping_size = 56
279
280# The number of ping packets originating from remote linux hosts
281# (integer value)
282#ping_count = 1
283
Jon Grimm270bd7f2014-08-05 18:11:29 +0000284# Timeout in seconds to wait for authentication to succeed. (integer
285# value)
286#ssh_timeout = 300
Matthew Treinish3d468112013-10-24 21:49:14 +0000287
Matthew Treinishc603d162015-01-05 20:03:40 -0500288# Additional wait time for clean state, when there is no OS-EXT-STS
289# extension available (integer value)
290#ready_wait = 0
291
292# Timeout in seconds to wait for output from ssh channel. (integer
293# value)
294#ssh_channel_timeout = 60
295
Matthew Treinish03feae02015-03-27 10:25:45 -0400296# Name of the fixed network that is visible to all test tenants. If
297# multiple networks are available for a tenant this is the network
298# which will be used for creating servers if tempest does not create a
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000299# network or a network is not specified elsewhere. It may be used for
300# ssh validation only if floating IPs are disabled. (string value)
Matthew Treinish03feae02015-03-27 10:25:45 -0400301#fixed_network_name = <None>
Matthew Treinishc603d162015-01-05 20:03:40 -0500302
303# Network used for SSH connections. Ignored if
Matthew Treinishe5cca002015-05-11 15:36:50 -0400304# use_floatingip_for_ssh=true or run_validation=false. (string value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500305#network_for_ssh = public
306
307# IP version used for SSH connections. (integer value)
308#ip_version_for_ssh = 4
Jon Grimm270bd7f2014-08-05 18:11:29 +0000309
310# Does SSH use Floating IPs? (boolean value)
311#use_floatingip_for_ssh = true
312
Matthew Treinishc603d162015-01-05 20:03:40 -0500313# Catalog type of the Compute service. (string value)
314#catalog_type = compute
315
316# The compute region name to use. If empty, the value of
317# identity.region is used instead. If no such region is found in the
318# service catalog, the first found one is used. (string value)
319#region =
320
321# The endpoint type to use for the compute service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400322# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500323#endpoint_type = publicURL
324
Jon Grimm270bd7f2014-08-05 18:11:29 +0000325# Expected device name when a volume is attached to an instance
Matthew Treinish3d468112013-10-24 21:49:14 +0000326# (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000327#volume_device_name = vdb
Sean Dague82190852014-05-24 07:42:59 -0400328
Matthew Treinishc603d162015-01-05 20:03:40 -0500329# Time in seconds before a shelved instance is eligible for removing
330# from a host. -1 never offload, 0 offload when shelved. This time
331# should be the same as the time of nova.conf, and some tests will run
332# for as long as the time. (integer value)
333#shelved_offload_time = 0
334
335# Unallocated floating IP range, which will be used to test the
336# floating IP bulk feature for CRUD operation. This block must not
337# overlap an existing floating IP pool. (string value)
338#floating_ip_range = 10.0.0.0/29
339
Sean Daguefc691e32014-01-03 08:51:54 -0500340
Sean Daguefc691e32014-01-03 08:51:54 -0500341[compute-feature-enabled]
Matthew Treinish3d468112013-10-24 21:49:14 +0000342
343#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000344# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000345#
346
Matthew Treinishc603d162015-01-05 20:03:40 -0500347# If false, skip disk config tests (boolean value)
348#disk_config = true
349
Jon Grimm270bd7f2014-08-05 18:11:29 +0000350# A list of enabled compute extensions with a special entry all which
351# indicates every extension is enabled. Each extension should be
352# specified with alias name. Empty list indicates all extensions are
353# disabled (list value)
354#api_extensions = all
Matthew Treinish3d468112013-10-24 21:49:14 +0000355
Jon Grimm270bd7f2014-08-05 18:11:29 +0000356# Does the test environment support changing the admin password?
357# (boolean value)
358#change_password = false
359
360# Does the test environment support obtaining instance serial console
361# output? (boolean value)
362#console_output = true
Matthew Treinish20866a22014-06-12 14:58:36 -0400363
Matthew Treinishc603d162015-01-05 20:03:40 -0500364# Does the test environment support resizing? (boolean value)
365#resize = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000366
Matthew Treinishc603d162015-01-05 20:03:40 -0500367# Does the test environment support pausing? (boolean value)
368#pause = true
Ghanshyam9c2e50d2014-07-22 21:32:05 +0900369
Matthew Treinishc603d162015-01-05 20:03:40 -0500370# Does the test environment support shelving/unshelving? (boolean
371# value)
372#shelve = true
373
374# Does the test environment support suspend/resume? (boolean value)
375#suspend = true
Adam Gandelman7186f7a2014-07-23 09:28:56 -0400376
Jon Grimm270bd7f2014-08-05 18:11:29 +0000377# Does the test environment support live migration available? (boolean
378# value)
Joe Gordon31a139a2014-11-17 16:39:04 -0800379#live_migration = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000380
Matthew Treinishc603d162015-01-05 20:03:40 -0500381# Does the test environment use block devices for live migration
382# (boolean value)
383#block_migration_for_live_migration = false
384
385# Does the test environment block migration support cinder iSCSI
Joe Gordon0a5788f2015-03-17 11:29:38 -0700386# volumes. Note, libvirt doesn't support this, see
387# https://bugs.launchpad.net/nova/+bug/1398999 (boolean value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500388#block_migrate_cinder_iscsi = false
389
Matt Riedemannbb9f7042015-03-03 08:53:11 -0800390# Does the test system allow live-migration of paused instances? Note,
391# this is more than just the ANDing of paused and live_migrate, but
392# all 3 should be set to True to run those tests (boolean value)
393#live_migrate_paused_instances = false
394
Matthew Treinishc603d162015-01-05 20:03:40 -0500395# Enable VNC console. This configuration value should be same as
396# [nova.vnc]->vnc_enabled in nova.conf (boolean value)
397#vnc_console = false
398
399# Enable Spice console. This configuration value should be same as
400# [nova.spice]->enabled in nova.conf (boolean value)
401#spice_console = false
Jon Grimm270bd7f2014-08-05 18:11:29 +0000402
403# Enable RDP console. This configuration value should be same as
404# [nova.rdp]->enabled in nova.conf (boolean value)
405#rdp_console = false
406
407# Does the test environment support instance rescue mode? (boolean
408# value)
409#rescue = true
410
Matthew Treinishc603d162015-01-05 20:03:40 -0500411# Enables returning of the instance password by the relevant server
412# API calls such as create, rebuild or rescue. (boolean value)
413#enable_instance_password = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000414
Matthew Treinishc603d162015-01-05 20:03:40 -0500415# Does the test environment support dynamic network interface
416# attachment? (boolean value)
417#interface_attach = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000418
419# Does the test environment support creating snapshot images of
420# running instances? (boolean value)
421#snapshot = true
422
Matthew Treinishdfd7ac02015-02-09 17:47:31 -0500423# Does the test environment have the ec2 api running? (boolean value)
424#ec2_api = true
425
Matt Riedemann17940732015-03-13 14:18:19 +0000426# Does Nova preserve preexisting ports from Neutron when deleting an
427# instance? This should be set to True if testing Kilo+ Nova. (boolean
428# value)
429#preserve_ports = false
430
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100431
Julie Pichond1017642013-07-24 16:37:23 +0100432[dashboard]
Julie Pichond1017642013-07-24 16:37:23 +0100433
Matthew Treinish3d468112013-10-24 21:49:14 +0000434#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000435# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000436#
Julie Pichond1017642013-07-24 16:37:23 +0100437
Matthew Treinish3d468112013-10-24 21:49:14 +0000438# Where the dashboard can be found (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000439#dashboard_url = http://localhost/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900440
Matthew Treinish3d468112013-10-24 21:49:14 +0000441# Login page for the dashboard (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000442#login_url = http://localhost/auth/login/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900443
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900444
Sean Daguefc691e32014-01-03 08:51:54 -0500445[data_processing]
446
447#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000448# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500449#
450
451# Catalog type of the data processing service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000452#catalog_type = data_processing
Sean Daguefc691e32014-01-03 08:51:54 -0500453
Jon Grimm270bd7f2014-08-05 18:11:29 +0000454# The endpoint type to use for the data processing service. (string
455# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400456# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000457#endpoint_type = publicURL
JordanPfc62c902014-02-26 14:47:28 +0000458
Sean Daguefc691e32014-01-03 08:51:54 -0500459
Luigi Toscano14d172d2015-01-23 16:37:47 +0100460[data_processing-feature-enabled]
461
462#
463# From tempest.config
464#
465
466# List of enabled data processing plugins (list value)
467#plugins = vanilla,hdp
468
469
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800470[database]
471
472#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000473# From tempest.config
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800474#
475
476# Catalog type of the Database service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000477#catalog_type = database
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800478
Jon Grimm270bd7f2014-08-05 18:11:29 +0000479# Valid primary flavor to use in database tests. (string value)
480#db_flavor_ref = 1
Peter Stachowski320f9c72014-04-21 16:13:23 -0400481
Matthew Treinishc603d162015-01-05 20:03:40 -0500482# Current database version to use in database tests. (string value)
483#db_current_version = v1.0
484
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800485
Sean Daguefc691e32014-01-03 08:51:54 -0500486[debug]
487
488#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000489# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500490#
491
Jon Grimm270bd7f2014-08-05 18:11:29 +0000492# A regex to determine which requests should be traced. This is a
493# regex to match the caller for rest client requests to be able to
494# selectively trace calls out of specific classes and methods. It
495# largely exists for test development, and is not expected to be used
496# in a real deploy of tempest. This will be matched against the
497# discovered ClassName:method in the test environment. Expected
498# values for this field are: * ClassName:test_method_name - traces
499# one test_method * ClassName:setUp(Class) - traces specific setup
500# functions * ClassName:tearDown(Class) - traces specific teardown
501# functions * ClassName:_run_cleanups - traces the cleanup functions
502# If nothing is specified, this feature is not enabled. To trace
503# everything specify .* as the regex. (string value)
504#trace_requests =
Sean Daguec522c092014-03-24 10:43:22 -0400505
Sean Daguefc691e32014-01-03 08:51:54 -0500506
507[identity]
508
509#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000510# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500511#
512
Jon Grimm270bd7f2014-08-05 18:11:29 +0000513# Catalog type of the Identity service. (string value)
514#catalog_type = identity
515
516# Set to True if using self-signed SSL certificates. (boolean value)
517#disable_ssl_certificate_validation = false
518
Matthew Treinishc603d162015-01-05 20:03:40 -0500519# Specify a CA bundle file to use in verifying a TLS (https) server
520# certificate. (string value)
521#ca_certificates_file = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +0000522
523# Full URI of the OpenStack Identity API (Keystone), v2 (string value)
524#uri = <None>
525
526# Full URI of the OpenStack Identity API (Keystone), v3 (string value)
527#uri_v3 = <None>
528
Matthew Treinishc603d162015-01-05 20:03:40 -0500529# Identity API version to be used for authentication for API tests.
530# (string value)
531#auth_version = v2
532
533# The identity region name to use. Also used as the other services'
534# region name unless they are set explicitly. If no such region is
535# found in the service catalog, the first found one is used. (string
536# value)
537#region = RegionOne
538
539# The endpoint type to use for the identity service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400540# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500541#endpoint_type = publicURL
542
Jon Grimm270bd7f2014-08-05 18:11:29 +0000543# Username to use for Nova API requests. (string value)
544#username = <None>
Andrea Frittolib1b04bb2014-04-06 11:57:07 +0100545
Matthew Treinishc603d162015-01-05 20:03:40 -0500546# Tenant name to use for Nova API requests. (string value)
547#tenant_name = <None>
548
549# Role required to administrate keystone. (string value)
550#admin_role = admin
551
552# API key to use when authenticating. (string value)
553#password = <None>
554
555# Domain name for authentication (Keystone V3).The same domain applies
556# to user and project (string value)
557#domain_name = <None>
558
559# Username of alternate user to use for Nova API requests. (string
560# value)
561#alt_username = <None>
562
563# Alternate user's Tenant name to use for Nova API requests. (string
564# value)
565#alt_tenant_name = <None>
566
567# API key to use when authenticating as alternate user. (string value)
568#alt_password = <None>
569
570# Alternate domain name for authentication (Keystone V3).The same
571# domain applies to user and project (string value)
572#alt_domain_name = <None>
573
574# Administrative Username to use for Keystone API requests. (string
575# value)
576#admin_username = <None>
577
578# Administrative Tenant name to use for Keystone API requests. (string
579# value)
580#admin_tenant_name = <None>
581
582# API key to use when authenticating as admin. (string value)
583#admin_password = <None>
584
585# Admin domain name for authentication (Keystone V3).The same domain
586# applies to user and project (string value)
587#admin_domain_name = <None>
588
Martin Pavlasek4c3f2ab2014-04-15 17:15:15 +0200589# ID of the default domain (string value)
590#default_domain_id = default
591
Sean Daguefc691e32014-01-03 08:51:54 -0500592
Matthew Treinishd5021a72014-01-09 18:42:51 +0000593[identity-feature-enabled]
594
595#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000596# From tempest.config
Matthew Treinishd5021a72014-01-09 18:42:51 +0000597#
598
Matthew Treinishc603d162015-01-05 20:03:40 -0500599# Does the identity service have delegation and impersonation enabled
600# (boolean value)
601#trust = true
602
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000603# Is the v2 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000604#api_v2 = true
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000605
606# Is the v3 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000607#api_v3 = true
608
Matthew Treinishd5021a72014-01-09 18:42:51 +0000609
Sean Daguefc691e32014-01-03 08:51:54 -0500610[image]
611
612#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000613# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500614#
615
616# Catalog type of the Image service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000617#catalog_type = image
Sean Daguefc691e32014-01-03 08:51:54 -0500618
Matthew Treinishc603d162015-01-05 20:03:40 -0500619# The image region name to use. If empty, the value of identity.region
620# is used instead. If no such region is found in the service catalog,
621# the first found one is used. (string value)
622#region =
623
Jon Grimm270bd7f2014-08-05 18:11:29 +0000624# The endpoint type to use for the image service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400625# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000626#endpoint_type = publicURL
JordanP5d29b2c2013-12-18 13:56:03 +0000627
Sean Daguefc691e32014-01-03 08:51:54 -0500628# http accessible image (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000629#http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
630
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200631# Timeout in seconds to wait for an image to become available.
632# (integer value)
633#build_timeout = 300
634
635# Time in seconds between image operation status checks. (integer
636# value)
637#build_interval = 1
638
Sean Daguefc691e32014-01-03 08:51:54 -0500639
640[image-feature-enabled]
641
642#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000643# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500644#
645
Jon Grimm270bd7f2014-08-05 18:11:29 +0000646# Is the v2 image API enabled (boolean value)
647#api_v2 = true
Sean Daguefc691e32014-01-03 08:51:54 -0500648
Matthew Treinishc603d162015-01-05 20:03:40 -0500649# Is the v1 image API enabled (boolean value)
650#api_v1 = true
651
bkopilov81aaae72015-05-15 23:46:25 +0300652# Is the deactivate-image feature enabled. The feature has been
653# integrated since Kilo. (boolean value)
654#deactivate_image = false
655
Sean Daguefc691e32014-01-03 08:51:54 -0500656
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000657[input-scenario]
658
659#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000660# From tempest.config
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000661#
662
Jon Grimm270bd7f2014-08-05 18:11:29 +0000663# Matching images become parameters for scenario tests (string value)
664#image_regex = ^cirros-0.3.1-x86_64-uec$
665
Matthew Treinishc603d162015-01-05 20:03:40 -0500666# Matching flavors become parameters for scenario tests (string value)
667#flavor_regex = ^m1.nano$
668
Jon Grimm270bd7f2014-08-05 18:11:29 +0000669# SSH verification in tests is skippedfor matching images (string
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000670# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000671#non_ssh_image_regex = ^.*[Ww]in.*$
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000672
Jon Grimm270bd7f2014-08-05 18:11:29 +0000673# List of user mapped to regex to matching image names. (string value)
Marc Koderer07f5a522015-03-27 15:02:41 +0100674#ssh_user_regex = [["^.*[Cc]irros.*$", "cirros"]]
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000675
676
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300677[messaging]
678
679#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000680# From tempest.config
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300681#
682
683# Catalog type of the Messaging service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000684#catalog_type = messaging
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300685
Matthew Treinishc603d162015-01-05 20:03:40 -0500686# The maximum number of queue records per page when listing queues
687# (integer value)
688#max_queues_per_page = 20
Jon Grimm270bd7f2014-08-05 18:11:29 +0000689
Matthew Treinishc603d162015-01-05 20:03:40 -0500690# The maximum metadata size for a queue (integer value)
691#max_queue_metadata = 65536
Jon Grimm270bd7f2014-08-05 18:11:29 +0000692
693# The maximum number of queue message per page when listing (or)
694# posting messages (integer value)
695#max_messages_per_page = 20
696
Matthew Treinishc603d162015-01-05 20:03:40 -0500697# The maximum size of a message body (integer value)
698#max_message_size = 262144
Jon Grimm270bd7f2014-08-05 18:11:29 +0000699
Matthew Treinishc603d162015-01-05 20:03:40 -0500700# The maximum number of messages per claim (integer value)
701#max_messages_per_claim = 20
702
703# The maximum ttl for a message (integer value)
704#max_message_ttl = 1209600
705
706# The maximum ttl for a claim (integer value)
707#max_claim_ttl = 43200
708
709# The maximum grace period for a claim (integer value)
710#max_claim_grace = 43200
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300711
712
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100713[negative]
714
715#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000716# From tempest.config
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100717#
718
719# Test generator class for all negative tests (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000720#test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100721
722
Sean Daguefc691e32014-01-03 08:51:54 -0500723[network]
724
725#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000726# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500727#
728
729# Catalog type of the Neutron service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000730#catalog_type = network
731
Sean Daguefc691e32014-01-03 08:51:54 -0500732# The network region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +0000733# identity.region is used instead. If no such region is found in the
734# service catalog, the first found one is used. (string value)
735#region =
Sean Daguefc691e32014-01-03 08:51:54 -0500736
Matthew Treinishc603d162015-01-05 20:03:40 -0500737# The endpoint type to use for the network service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400738# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500739#endpoint_type = publicURL
740
Jon Grimm270bd7f2014-08-05 18:11:29 +0000741# The cidr block to allocate tenant ipv4 subnets from (string value)
742#tenant_network_cidr = 10.100.0.0/16
Sean Daguefc691e32014-01-03 08:51:54 -0500743
Henry Gessauffda37a2014-01-16 11:17:55 -0500744# The mask bits for tenant ipv4 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000745#tenant_network_mask_bits = 28
Sean Daguefc691e32014-01-03 08:51:54 -0500746
Jon Grimm270bd7f2014-08-05 18:11:29 +0000747# The cidr block to allocate tenant ipv6 subnets from (string value)
748#tenant_network_v6_cidr = 2003::/48
Henry Gessauffda37a2014-01-16 11:17:55 -0500749
750# The mask bits for tenant ipv6 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000751#tenant_network_v6_mask_bits = 64
Henry Gessauffda37a2014-01-16 11:17:55 -0500752
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000753# Whether tenant networks can be reached directly from the test
754# client. This must be set to True when the 'fixed' ssh_connect_method
755# is selected. (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000756#tenant_networks_reachable = false
Attila Fazekas640392b2014-06-12 15:58:10 +0200757
Matthew Treinishc603d162015-01-05 20:03:40 -0500758# Id of the public network that provides external connectivity (string
759# value)
760#public_network_id =
761
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000762# Default floating network name. Used to allocate floating IPs when
763# neutron is enabled. (string value)
764#floating_network_name = <None>
765
Matthew Treinishc603d162015-01-05 20:03:40 -0500766# Id of the public router that provides external connectivity. This
767# should only be used when Neutron's 'allow_overlapping_ips' is set to
768# 'False' in neutron.conf. usually not needed past 'Grizzly' release
769# (string value)
770#public_router_id =
771
772# Timeout in seconds to wait for network operation to complete.
773# (integer value)
774#build_timeout = 300
775
776# Time in seconds between network operation status checks. (integer
777# value)
778#build_interval = 1
779
780# List of dns servers which should be used for subnet creation (list
781# value)
782#dns_servers = 8.8.8.8,8.8.4.4
783
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200784# vnic_type to use when Launching instances with pre-configured ports.
785# Supported ports are: ['normal','direct','macvtap'] (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400786# Allowed values: <None>, normal, direct, macvtap
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200787#port_vnic_type = <None>
788
Sean Daguefc691e32014-01-03 08:51:54 -0500789
790[network-feature-enabled]
791
792#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000793# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500794#
795
Matthew Treinishc603d162015-01-05 20:03:40 -0500796# Allow the execution of IPv6 tests (boolean value)
797#ipv6 = true
798
Jon Grimm270bd7f2014-08-05 18:11:29 +0000799# A list of enabled network extensions with a special entry all which
800# indicates every extension is enabled. Empty list indicates all
Alexander Gubanov36e1f9b2015-06-12 18:02:10 +0300801# extensions are disabled. To get the list of extensions run: 'neutron
802# ext-list' (list value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000803#api_extensions = all
804
Jon Grimm270bd7f2014-08-05 18:11:29 +0000805# Allow the execution of IPv6 subnet tests that use the extended IPv6
806# attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
807#ipv6_subnet_attributes = false
Sean M. Collinsdd27a4d2014-05-13 10:33:15 -0400808
Itzik Brownbeb30d32015-03-29 09:42:54 +0300809# Does the test environment support changing port admin state (boolean
810# value)
811#port_admin_state_change = true
812
Sean Daguefc691e32014-01-03 08:51:54 -0500813
814[object-storage]
815
816#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000817# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500818#
819
820# Catalog type of the Object-Storage service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000821#catalog_type = object-store
Sean Daguefc691e32014-01-03 08:51:54 -0500822
Matthew Treinishc603d162015-01-05 20:03:40 -0500823# The object-storage region name to use. If empty, the value of
824# identity.region is used instead. If no such region is found in the
825# service catalog, the first found one is used. (string value)
826#region =
JordanP5d29b2c2013-12-18 13:56:03 +0000827
Jon Grimm270bd7f2014-08-05 18:11:29 +0000828# The endpoint type to use for the object-store service. (string
829# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400830# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000831#endpoint_type = publicURL
Sean Daguefc691e32014-01-03 08:51:54 -0500832
Matthew Treinishc603d162015-01-05 20:03:40 -0500833# Number of seconds to time on waiting for a container to container
834# synchronization complete. (integer value)
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900835#container_sync_timeout = 600
Matthew Treinishc603d162015-01-05 20:03:40 -0500836
837# Number of seconds to wait while looping to check the status of a
838# container to container synchronization (integer value)
839#container_sync_interval = 5
840
Jon Grimm270bd7f2014-08-05 18:11:29 +0000841# Role to add to users created for swift tests to enable creating
842# containers (string value)
843#operator_role = Member
Sean Daguefc691e32014-01-03 08:51:54 -0500844
Matthew Treinish998c91d2014-03-01 12:39:49 -0500845# User role that has reseller admin (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000846#reseller_admin_role = ResellerAdmin
Matthew Treinish998c91d2014-03-01 12:39:49 -0500847
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900848# Name of sync realm. A sync realm is a set of clusters that have
849# agreed to allow container syncing with each other. Set the same
850# realm name as Swift's container-sync-realms.conf (string value)
851#realm_name = realm1
852
853# One name of cluster which is set in the realm whose name is set in
854# 'realm_name' item in this file. Set the same cluster name as Swift's
855# container-sync-realms.conf (string value)
856#cluster_name = name1
857
Sean Daguefc691e32014-01-03 08:51:54 -0500858
859[object-storage-feature-enabled]
860
861#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000862# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500863#
864
Jon Grimm270bd7f2014-08-05 18:11:29 +0000865# A list of the enabled optional discoverable apis. A single entry,
866# all, indicates that all of these features are expected to be enabled
867# (list value)
868#discoverable_apis = all
869
Matthew Treinishc603d162015-01-05 20:03:40 -0500870# Execute (old style) container-sync tests (boolean value)
871#container_sync = true
872
Jon Grimm270bd7f2014-08-05 18:11:29 +0000873# Execute object-versioning tests (boolean value)
874#object_versioning = true
Daisuke Morita20a183f2014-08-25 14:43:36 +0900875
Matthew Treinishc603d162015-01-05 20:03:40 -0500876# Execute discoverability tests (boolean value)
877#discoverability = true
878
Sean Daguefc691e32014-01-03 08:51:54 -0500879
Matthew Treinish3d468112013-10-24 21:49:14 +0000880[orchestration]
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900881
Matthew Treinish3d468112013-10-24 21:49:14 +0000882#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000883# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000884#
Attila Fazekas86950732013-06-08 09:33:08 +0200885
Matthew Treinishc603d162015-01-05 20:03:40 -0500886# Catalog type of the Orchestration service. (string value)
887#catalog_type = orchestration
888
889# The orchestration region name to use. If empty, the value of
890# identity.region is used instead. If no such region is found in the
891# service catalog, the first found one is used. (string value)
892#region =
893
894# The endpoint type to use for the orchestration service. (string
895# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400896# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500897#endpoint_type = publicURL
898
Matthew Treinishdb9721d2015-03-18 14:21:28 -0400899# Role required for users to be able to manage stacks (string value)
900#stack_owner_role = heat_stack_owner
901
Jon Grimm270bd7f2014-08-05 18:11:29 +0000902# Time in seconds between build status checks. (integer value)
903#build_interval = 1
904
905# Timeout in seconds to wait for a stack to build. (integer value)
906#build_timeout = 1200
907
Matthew Treinishc603d162015-01-05 20:03:40 -0500908# Instance type for tests. Needs to be big enough for a full OS plus
909# the test workload (string value)
910#instance_type = m1.micro
Jon Grimm270bd7f2014-08-05 18:11:29 +0000911
Jon Grimm270bd7f2014-08-05 18:11:29 +0000912# Name of existing keypair to launch servers with. (string value)
913#keypair_name = <None>
914
915# Value must match heat configuration of the same name. (integer
916# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500917#max_template_size = 524288
Jon Grimm270bd7f2014-08-05 18:11:29 +0000918
919# Value must match heat configuration of the same name. (integer
920# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500921#max_resources_per_stack = 1000
Steven Hardyfdc6bd72014-03-21 16:56:04 +0000922
Matthew Treinish3d468112013-10-24 21:49:14 +0000923
Doug Hellmann583ce2c2015-03-11 14:55:46 +0000924[oslo_concurrency]
925
926#
927# From oslo.concurrency
928#
929
930# Enables or disables inter-process locks. (boolean value)
931# Deprecated group/name - [DEFAULT]/disable_process_locking
932#disable_process_locking = false
933
934# Directory to use for lock files. For security, the specified
935# directory should only be writable by the user running the processes
936# that need locking. Defaults to environment variable OSLO_LOCK_PATH.
937# If external locks are used, a lock path must be set. (string value)
938# Deprecated group/name - [DEFAULT]/lock_path
939#lock_path = <None>
940
941
Sean Daguefc691e32014-01-03 08:51:54 -0500942[scenario]
Matthew Treinish3d468112013-10-24 21:49:14 +0000943
944#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000945# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000946#
947
Matthew Treinishc603d162015-01-05 20:03:40 -0500948# Directory containing image files (string value)
949#img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
950
951# Image file name (string value)
952# Deprecated group/name - [DEFAULT]/qcow2_img_file
953#img_file = cirros-0.3.1-x86_64-disk.img
954
955# Image disk format (string value)
956#img_disk_format = qcow2
957
958# Image container format (string value)
959#img_container_format = bare
Jon Grimm270bd7f2014-08-05 18:11:29 +0000960
Evgeny Antyshev7ba0d5f2015-04-28 13:18:07 +0000961# Glance image properties. Use for custom images which require them
962# (dict value)
963#img_properties = <None>
964
Jon Grimm270bd7f2014-08-05 18:11:29 +0000965# AMI image file name (string value)
966#ami_img_file = cirros-0.3.1-x86_64-blank.img
967
968# ARI image file name (string value)
969#ari_img_file = cirros-0.3.1-x86_64-initrd
970
Matthew Treinishc603d162015-01-05 20:03:40 -0500971# AKI image file name (string value)
972#aki_img_file = cirros-0.3.1-x86_64-vmlinuz
Jon Grimm270bd7f2014-08-05 18:11:29 +0000973
Matthew Treinishc603d162015-01-05 20:03:40 -0500974# ssh username for the image file (string value)
975#ssh_user = cirros
Alessandro Pilottib7c1daa2014-08-16 14:24:13 +0300976
Jon Grimm270bd7f2014-08-05 18:11:29 +0000977# specifies how many resources to request at once. Used for large
978# operations testing. (integer value)
979#large_ops_number = 0
Sean Daguefc691e32014-01-03 08:51:54 -0500980
Yair Fried413bf2d2014-11-19 17:07:11 +0200981# DHCP client used by images to renew DCHP lease. If left empty,
982# update operation will be skipped. Supported clients: "udhcpc",
983# "dhclient" (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400984# Allowed values: udhcpc, dhclient
Yair Fried413bf2d2014-11-19 17:07:11 +0200985#dhcp_client = udhcpc
986
Matthew Treinish3d468112013-10-24 21:49:14 +0000987
988[service_available]
989
990#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000991# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000992#
993
Jon Grimm270bd7f2014-08-05 18:11:29 +0000994# Whether or not cinder is expected to be available (boolean value)
995#cinder = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000996
Jon Grimm270bd7f2014-08-05 18:11:29 +0000997# Whether or not neutron is expected to be available (boolean value)
998#neutron = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000999
Matthew Treinishc603d162015-01-05 20:03:40 -05001000# Whether or not glance is expected to be available (boolean value)
1001#glance = true
1002
1003# Whether or not swift is expected to be available (boolean value)
1004#swift = true
1005
Jon Grimm270bd7f2014-08-05 18:11:29 +00001006# Whether or not nova is expected to be available (boolean value)
1007#nova = true
Matthew Treinish3d468112013-10-24 21:49:14 +00001008
Matthew Treinishc603d162015-01-05 20:03:40 -05001009# Whether or not Heat is expected to be available (boolean value)
1010#heat = false
1011
1012# Whether or not Ceilometer is expected to be available (boolean
1013# value)
1014#ceilometer = true
1015
1016# Whether or not Horizon is expected to be available (boolean value)
1017#horizon = true
1018
Jon Grimm270bd7f2014-08-05 18:11:29 +00001019# Whether or not Sahara is expected to be available (boolean value)
1020#sahara = false
Matthew Treinishe3d26142013-11-26 19:14:58 +00001021
Matthew Treinishc603d162015-01-05 20:03:40 -05001022# Whether or not Ironic is expected to be available (boolean value)
1023#ironic = false
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +03001024
Jon Grimm270bd7f2014-08-05 18:11:29 +00001025# Whether or not Trove is expected to be available (boolean value)
1026#trove = false
Nikhil Manchandadd6886f2014-03-03 01:58:45 -08001027
Jon Grimm270bd7f2014-08-05 18:11:29 +00001028# Whether or not Zaqar is expected to be available (boolean value)
1029#zaqar = false
Malini Kamalambal6e7b3b82014-02-06 06:49:04 -05001030
Matthew Treinish3d468112013-10-24 21:49:14 +00001031
Sean Daguefc691e32014-01-03 08:51:54 -05001032[stress]
1033
1034#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001035# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001036#
1037
Matthew Treinishc603d162015-01-05 20:03:40 -05001038# Directory containing log files on the compute nodes (string value)
1039#nova_logdir = <None>
1040
1041# Maximum number of instances to create during test. (integer value)
1042#max_instances = 16
1043
Jon Grimm270bd7f2014-08-05 18:11:29 +00001044# Controller host. (string value)
1045#controller = <None>
Sean Daguefc691e32014-01-03 08:51:54 -05001046
Matthew Treinishc603d162015-01-05 20:03:40 -05001047# Controller host. (string value)
1048#target_controller = <None>
1049
1050# ssh user. (string value)
1051#target_ssh_user = <None>
1052
1053# Path to private key. (string value)
1054#target_private_key_path = <None>
1055
1056# regexp for list of log files. (string value)
1057#target_logfiles = <None>
1058
1059# time (in seconds) between log file error checks. (integer value)
1060#log_check_interval = 60
1061
Jon Grimm270bd7f2014-08-05 18:11:29 +00001062# The number of threads created while stress test. (integer value)
1063#default_thread_number_per_action = 4
1064
Jon Grimm270bd7f2014-08-05 18:11:29 +00001065# Prevent the cleaning (tearDownClass()) between each stress test run
1066# if an exception occurs during this run. (boolean value)
1067#leave_dirty_stack = false
1068
Matthew Treinishc603d162015-01-05 20:03:40 -05001069# Allows a full cleaning process after a stress test. Caution : this
1070# cleanup will remove every objects of every tenant. (boolean value)
1071#full_clean_stack = false
Julien Leloupa5ee5422014-02-13 14:29:02 +01001072
Sean Daguefc691e32014-01-03 08:51:54 -05001073
1074[telemetry]
1075
1076#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001077# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001078#
1079
1080# Catalog type of the Telemetry service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001081#catalog_type = metering
Sean Daguefc691e32014-01-03 08:51:54 -05001082
Jon Grimm270bd7f2014-08-05 18:11:29 +00001083# The endpoint type to use for the telemetry service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001084# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +00001085#endpoint_type = publicURL
1086
1087# This variable is used as flag to enable notification tests (boolean
JordanPfc62c902014-02-26 14:47:28 +00001088# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001089#too_slow_to_test = true
Vadim Rovachev7bcea352013-12-26 15:56:17 +04001090
Sean Daguefc691e32014-01-03 08:51:54 -05001091
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001092[validation]
1093
1094#
1095# From tempest.config
1096#
1097
Matthew Treinishe5cca002015-05-11 15:36:50 -04001098# Enable ssh on created servers and creation of additional validation
1099# resources to enable remote access (boolean value)
1100# Deprecated group/name - [compute]/run_ssh
1101#run_validation = false
1102
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001103# Default IP type used for validation: -fixed: uses the first IP
1104# belonging to the fixed network -floating: creates and uses a
1105# floating IP (string value)
1106# Allowed values: fixed, floating
1107#connect_method = floating
1108
1109# Default authentication method to the instance. Only ssh via keypair
1110# is supported for now. Additional methods will be handled in a
1111# separate spec. (string value)
1112# Allowed values: keypair
1113#auth_method = keypair
1114
1115# Default IP version for ssh connections. (integer value)
1116#ip_version_for_ssh = 4
1117
1118# Timeout in seconds to wait for ping to succeed. (integer value)
1119#ping_timeout = 120
1120
1121# Timeout in seconds to wait for the TCP connection to be successful.
1122# (integer value)
1123#connect_timeout = 60
1124
1125# Timeout in seconds to wait for the ssh banner. (integer value)
1126#ssh_timeout = 300
1127
1128
Sean Daguefc691e32014-01-03 08:51:54 -05001129[volume]
1130
1131#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001132# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001133#
1134
Jon Grimm270bd7f2014-08-05 18:11:29 +00001135# Time in seconds between volume availability checks. (integer value)
1136#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -05001137
Eric Harney9b1f89c2014-10-14 14:40:19 -04001138# Timeout in seconds to wait for a volume to become available.
Sean Daguefc691e32014-01-03 08:51:54 -05001139# (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001140#build_timeout = 300
Sean Daguefc691e32014-01-03 08:51:54 -05001141
1142# Catalog type of the Volume Service (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001143#catalog_type = volume
1144
Sean Daguefc691e32014-01-03 08:51:54 -05001145# The volume region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +00001146# identity.region is used instead. If no such region is found in the
1147# service catalog, the first found one is used. (string value)
1148#region =
1149
Matthew Treinishc603d162015-01-05 20:03:40 -05001150# The endpoint type to use for the volume service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001151# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -05001152#endpoint_type = publicURL
1153
1154# Name of the backend1 (must be declared in cinder.conf) (string
1155# value)
1156#backend1_name = BACKEND_1
1157
1158# Name of the backend2 (must be declared in cinder.conf) (string
1159# value)
1160#backend2_name = BACKEND_2
1161
Jon Grimm270bd7f2014-08-05 18:11:29 +00001162# Backend protocol to target when creating volume types (string value)
1163#storage_protocol = iSCSI
1164
1165# Backend vendor to target when creating volume types (string value)
1166#vendor_name = Open Source
1167
Matthew Treinishc603d162015-01-05 20:03:40 -05001168# Disk format to use when copying a volume to image (string value)
1169#disk_format = raw
1170
Jon Grimm270bd7f2014-08-05 18:11:29 +00001171# Default size in GB for volumes created by volumes tests (integer
Sean Daguefc691e32014-01-03 08:51:54 -05001172# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001173#volume_size = 1
Jerry Cai9733d0e2014-03-19 15:50:49 +08001174
Sean Daguefc691e32014-01-03 08:51:54 -05001175
1176[volume-feature-enabled]
1177
1178#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001179# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001180#
1181
Matthew Treinishc603d162015-01-05 20:03:40 -05001182# Runs Cinder multi-backend test (requires 2 backends) (boolean value)
1183#multi_backend = false
1184
1185# Runs Cinder volumes backup test (boolean value)
1186#backup = true
1187
1188# Runs Cinder volume snapshot test (boolean value)
1189#snapshot = true
1190
Jon Grimm270bd7f2014-08-05 18:11:29 +00001191# A list of enabled volume extensions with a special entry all which
1192# indicates every extension is enabled. Empty list indicates all
1193# extensions are disabled (list value)
1194#api_extensions = all
Zhi Kun Liude25c022014-02-14 13:25:19 +08001195
Sean Daguefc691e32014-01-03 08:51:54 -05001196# Is the v1 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001197#api_v1 = true
Sean Daguefc691e32014-01-03 08:51:54 -05001198
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +08001199# Is the v2 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001200#api_v2 = true
bkopilov8a657ae2015-05-11 11:45:23 +03001201
1202# Update bootable status of a volume Not implemented on icehouse
1203# (boolean value)
1204#bootable = false