blob: 2805d7819cf04b6b595a8aa311434a82a7eb5dd8 [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# 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
David Kranz968f1b32015-06-18 16:58:18 -0400257# Shell fragments to use before executing a command when sshing to a
258# guest. (string value)
259#ssh_shell_prologue = set -eu -o pipefail; PATH=$$PATH:/sbin;
260
Jon Grimm270bd7f2014-08-05 18:11:29 +0000261# Auth method used for authenticate to the instance. Valid choices
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000262# are: keypair, configured, adminpass and disabled. Keypair: start the
263# servers with a ssh keypair. Configured: use the configured user and
264# password. Adminpass: use the injected adminPass. Disabled: avoid
265# using ssh when it is an option. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000266#ssh_auth_method = keypair
267
Jon Grimm270bd7f2014-08-05 18:11:29 +0000268# How to connect to the instance? fixed: using the first ip belongs
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000269# the fixed network floating: creating and using a floating ip.
270# (string value)
271#ssh_connect_method = floating
JordanP5d29b2c2013-12-18 13:56:03 +0000272
Matthew Treinishc603d162015-01-05 20:03:40 -0500273# User name used to authenticate to an instance. (string value)
274#ssh_user = root
275
276# Timeout in seconds to wait for ping to succeed. (integer value)
277#ping_timeout = 120
278
Richard Wintersf87059b2015-02-17 11:46:54 -0500279# The packet size for ping packets originating from remote linux hosts
280# (integer value)
281#ping_size = 56
282
283# The number of ping packets originating from remote linux hosts
284# (integer value)
285#ping_count = 1
286
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
Matthew Treinish03feae02015-03-27 10:25:45 -0400291# Name of the fixed network that is visible to all test tenants. If
292# multiple networks are available for a tenant this is the network
293# which will be used for creating servers if tempest does not create a
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000294# network or a network is not specified elsewhere. It may be used for
295# ssh validation only if floating IPs are disabled. (string value)
Matthew Treinish03feae02015-03-27 10:25:45 -0400296#fixed_network_name = <None>
Matthew Treinishc603d162015-01-05 20:03:40 -0500297
298# Network used for SSH connections. Ignored if
Matthew Treinishe5cca002015-05-11 15:36:50 -0400299# use_floatingip_for_ssh=true or run_validation=false. (string value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500300#network_for_ssh = public
301
Jon Grimm270bd7f2014-08-05 18:11:29 +0000302# Does SSH use Floating IPs? (boolean value)
303#use_floatingip_for_ssh = true
304
Matthew Treinishc603d162015-01-05 20:03:40 -0500305# Catalog type of the Compute service. (string value)
306#catalog_type = compute
307
308# The compute region name to use. If empty, the value of
309# identity.region is used instead. If no such region is found in the
310# service catalog, the first found one is used. (string value)
311#region =
312
313# The endpoint type to use for the compute service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400314# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500315#endpoint_type = publicURL
316
Jon Grimm270bd7f2014-08-05 18:11:29 +0000317# Expected device name when a volume is attached to an instance
Matthew Treinish3d468112013-10-24 21:49:14 +0000318# (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000319#volume_device_name = vdb
Sean Dague82190852014-05-24 07:42:59 -0400320
Matthew Treinishc603d162015-01-05 20:03:40 -0500321# Time in seconds before a shelved instance is eligible for removing
322# from a host. -1 never offload, 0 offload when shelved. This time
323# should be the same as the time of nova.conf, and some tests will run
324# for as long as the time. (integer value)
325#shelved_offload_time = 0
326
327# Unallocated floating IP range, which will be used to test the
328# floating IP bulk feature for CRUD operation. This block must not
329# overlap an existing floating IP pool. (string value)
330#floating_ip_range = 10.0.0.0/29
331
Sean Daguefc691e32014-01-03 08:51:54 -0500332
Sean Daguefc691e32014-01-03 08:51:54 -0500333[compute-feature-enabled]
Matthew Treinish3d468112013-10-24 21:49:14 +0000334
335#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000336# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000337#
338
Matthew Treinishc603d162015-01-05 20:03:40 -0500339# If false, skip disk config tests (boolean value)
340#disk_config = true
341
Jon Grimm270bd7f2014-08-05 18:11:29 +0000342# A list of enabled compute extensions with a special entry all which
343# indicates every extension is enabled. Each extension should be
344# specified with alias name. Empty list indicates all extensions are
345# disabled (list value)
346#api_extensions = all
Matthew Treinish3d468112013-10-24 21:49:14 +0000347
Jon Grimm270bd7f2014-08-05 18:11:29 +0000348# Does the test environment support changing the admin password?
349# (boolean value)
350#change_password = false
351
352# Does the test environment support obtaining instance serial console
353# output? (boolean value)
354#console_output = true
Matthew Treinish20866a22014-06-12 14:58:36 -0400355
Matthew Treinishc603d162015-01-05 20:03:40 -0500356# Does the test environment support resizing? (boolean value)
357#resize = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000358
Matthew Treinishc603d162015-01-05 20:03:40 -0500359# Does the test environment support pausing? (boolean value)
360#pause = true
Ghanshyam9c2e50d2014-07-22 21:32:05 +0900361
Matthew Treinishc603d162015-01-05 20:03:40 -0500362# Does the test environment support shelving/unshelving? (boolean
363# value)
364#shelve = true
365
366# Does the test environment support suspend/resume? (boolean value)
367#suspend = true
Adam Gandelman7186f7a2014-07-23 09:28:56 -0400368
Jon Grimm270bd7f2014-08-05 18:11:29 +0000369# Does the test environment support live migration available? (boolean
370# value)
Joe Gordon31a139a2014-11-17 16:39:04 -0800371#live_migration = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000372
Matthew Treinishc603d162015-01-05 20:03:40 -0500373# Does the test environment use block devices for live migration
374# (boolean value)
375#block_migration_for_live_migration = false
376
377# Does the test environment block migration support cinder iSCSI
Joe Gordon0a5788f2015-03-17 11:29:38 -0700378# volumes. Note, libvirt doesn't support this, see
379# https://bugs.launchpad.net/nova/+bug/1398999 (boolean value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500380#block_migrate_cinder_iscsi = false
381
Matt Riedemannbb9f7042015-03-03 08:53:11 -0800382# Does the test system allow live-migration of paused instances? Note,
383# this is more than just the ANDing of paused and live_migrate, but
384# all 3 should be set to True to run those tests (boolean value)
385#live_migrate_paused_instances = false
386
Matthew Treinishc603d162015-01-05 20:03:40 -0500387# Enable VNC console. This configuration value should be same as
388# [nova.vnc]->vnc_enabled in nova.conf (boolean value)
389#vnc_console = false
390
391# Enable Spice console. This configuration value should be same as
392# [nova.spice]->enabled in nova.conf (boolean value)
393#spice_console = false
Jon Grimm270bd7f2014-08-05 18:11:29 +0000394
395# Enable RDP console. This configuration value should be same as
396# [nova.rdp]->enabled in nova.conf (boolean value)
397#rdp_console = false
398
399# Does the test environment support instance rescue mode? (boolean
400# value)
401#rescue = true
402
Matthew Treinishc603d162015-01-05 20:03:40 -0500403# Enables returning of the instance password by the relevant server
404# API calls such as create, rebuild or rescue. (boolean value)
405#enable_instance_password = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000406
Matthew Treinishc603d162015-01-05 20:03:40 -0500407# Does the test environment support dynamic network interface
408# attachment? (boolean value)
409#interface_attach = true
Jon Grimm270bd7f2014-08-05 18:11:29 +0000410
411# Does the test environment support creating snapshot images of
412# running instances? (boolean value)
413#snapshot = true
414
Matthew Treinishdfd7ac02015-02-09 17:47:31 -0500415# Does the test environment have the ec2 api running? (boolean value)
416#ec2_api = true
417
Matt Riedemann17940732015-03-13 14:18:19 +0000418# Does Nova preserve preexisting ports from Neutron when deleting an
419# instance? This should be set to True if testing Kilo+ Nova. (boolean
420# value)
421#preserve_ports = false
422
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100423
Julie Pichond1017642013-07-24 16:37:23 +0100424[dashboard]
Julie Pichond1017642013-07-24 16:37:23 +0100425
Matthew Treinish3d468112013-10-24 21:49:14 +0000426#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000427# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000428#
Julie Pichond1017642013-07-24 16:37:23 +0100429
Matthew Treinish3d468112013-10-24 21:49:14 +0000430# Where the dashboard can be found (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000431#dashboard_url = http://localhost/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900432
Matthew Treinish3d468112013-10-24 21:49:14 +0000433# Login page for the dashboard (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000434#login_url = http://localhost/auth/login/
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900435
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900436
Sean Daguefc691e32014-01-03 08:51:54 -0500437[data_processing]
438
439#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000440# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500441#
442
443# Catalog type of the data processing service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000444#catalog_type = data_processing
Sean Daguefc691e32014-01-03 08:51:54 -0500445
Jon Grimm270bd7f2014-08-05 18:11:29 +0000446# The endpoint type to use for the data processing service. (string
447# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400448# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000449#endpoint_type = publicURL
JordanPfc62c902014-02-26 14:47:28 +0000450
Sean Daguefc691e32014-01-03 08:51:54 -0500451
Luigi Toscano14d172d2015-01-23 16:37:47 +0100452[data_processing-feature-enabled]
453
454#
455# From tempest.config
456#
457
458# List of enabled data processing plugins (list value)
459#plugins = vanilla,hdp
460
461
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800462[database]
463
464#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000465# From tempest.config
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800466#
467
468# Catalog type of the Database service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000469#catalog_type = database
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800470
Jon Grimm270bd7f2014-08-05 18:11:29 +0000471# Valid primary flavor to use in database tests. (string value)
472#db_flavor_ref = 1
Peter Stachowski320f9c72014-04-21 16:13:23 -0400473
Matthew Treinishc603d162015-01-05 20:03:40 -0500474# Current database version to use in database tests. (string value)
475#db_current_version = v1.0
476
Nikhil Manchandadd6886f2014-03-03 01:58:45 -0800477
Sean Daguefc691e32014-01-03 08:51:54 -0500478[debug]
479
480#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000481# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500482#
483
Jon Grimm270bd7f2014-08-05 18:11:29 +0000484# A regex to determine which requests should be traced. This is a
485# regex to match the caller for rest client requests to be able to
486# selectively trace calls out of specific classes and methods. It
487# largely exists for test development, and is not expected to be used
488# in a real deploy of tempest. This will be matched against the
489# discovered ClassName:method in the test environment. Expected
490# values for this field are: * ClassName:test_method_name - traces
491# one test_method * ClassName:setUp(Class) - traces specific setup
492# functions * ClassName:tearDown(Class) - traces specific teardown
493# functions * ClassName:_run_cleanups - traces the cleanup functions
494# If nothing is specified, this feature is not enabled. To trace
495# everything specify .* as the regex. (string value)
496#trace_requests =
Sean Daguec522c092014-03-24 10:43:22 -0400497
Sean Daguefc691e32014-01-03 08:51:54 -0500498
499[identity]
500
501#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000502# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500503#
504
Jon Grimm270bd7f2014-08-05 18:11:29 +0000505# Catalog type of the Identity service. (string value)
506#catalog_type = identity
507
508# Set to True if using self-signed SSL certificates. (boolean value)
509#disable_ssl_certificate_validation = false
510
Matthew Treinishc603d162015-01-05 20:03:40 -0500511# Specify a CA bundle file to use in verifying a TLS (https) server
512# certificate. (string value)
513#ca_certificates_file = <None>
Jon Grimm270bd7f2014-08-05 18:11:29 +0000514
515# Full URI of the OpenStack Identity API (Keystone), v2 (string value)
516#uri = <None>
517
518# Full URI of the OpenStack Identity API (Keystone), v3 (string value)
519#uri_v3 = <None>
520
Matthew Treinishc603d162015-01-05 20:03:40 -0500521# Identity API version to be used for authentication for API tests.
522# (string value)
523#auth_version = v2
524
525# The identity region name to use. Also used as the other services'
526# region name unless they are set explicitly. If no such region is
527# found in the service catalog, the first found one is used. (string
528# value)
529#region = RegionOne
530
531# The endpoint type to use for the identity service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400532# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500533#endpoint_type = publicURL
534
Jon Grimm270bd7f2014-08-05 18:11:29 +0000535# Username to use for Nova API requests. (string value)
536#username = <None>
Andrea Frittolib1b04bb2014-04-06 11:57:07 +0100537
Matthew Treinishc603d162015-01-05 20:03:40 -0500538# Tenant name to use for Nova API requests. (string value)
539#tenant_name = <None>
540
541# Role required to administrate keystone. (string value)
542#admin_role = admin
543
544# API key to use when authenticating. (string value)
545#password = <None>
546
547# Domain name for authentication (Keystone V3).The same domain applies
548# to user and project (string value)
549#domain_name = <None>
550
551# Username of alternate user to use for Nova API requests. (string
552# value)
553#alt_username = <None>
554
555# Alternate user's Tenant name to use for Nova API requests. (string
556# value)
557#alt_tenant_name = <None>
558
559# API key to use when authenticating as alternate user. (string value)
560#alt_password = <None>
561
562# Alternate domain name for authentication (Keystone V3).The same
563# domain applies to user and project (string value)
564#alt_domain_name = <None>
565
566# Administrative Username to use for Keystone API requests. (string
567# value)
568#admin_username = <None>
569
570# Administrative Tenant name to use for Keystone API requests. (string
571# value)
572#admin_tenant_name = <None>
573
574# API key to use when authenticating as admin. (string value)
575#admin_password = <None>
576
577# Admin domain name for authentication (Keystone V3).The same domain
578# applies to user and project (string value)
579#admin_domain_name = <None>
580
Martin Pavlasek4c3f2ab2014-04-15 17:15:15 +0200581# ID of the default domain (string value)
582#default_domain_id = default
583
Sean Daguefc691e32014-01-03 08:51:54 -0500584
Matthew Treinishd5021a72014-01-09 18:42:51 +0000585[identity-feature-enabled]
586
587#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000588# From tempest.config
Matthew Treinishd5021a72014-01-09 18:42:51 +0000589#
590
Matthew Treinishc603d162015-01-05 20:03:40 -0500591# Does the identity service have delegation and impersonation enabled
592# (boolean value)
593#trust = true
594
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000595# Is the v2 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000596#api_v2 = true
Matthew Treinishdb2c5972014-01-31 22:18:59 +0000597
598# Is the v3 identity API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000599#api_v3 = true
600
Matthew Treinishd5021a72014-01-09 18:42:51 +0000601
Sean Daguefc691e32014-01-03 08:51:54 -0500602[image]
603
604#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000605# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500606#
607
608# Catalog type of the Image service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000609#catalog_type = image
Sean Daguefc691e32014-01-03 08:51:54 -0500610
Matthew Treinishc603d162015-01-05 20:03:40 -0500611# The image region name to use. If empty, the value of identity.region
612# is used instead. If no such region is found in the service catalog,
613# the first found one is used. (string value)
614#region =
615
Jon Grimm270bd7f2014-08-05 18:11:29 +0000616# The endpoint type to use for the image service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400617# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000618#endpoint_type = publicURL
JordanP5d29b2c2013-12-18 13:56:03 +0000619
Sean Daguefc691e32014-01-03 08:51:54 -0500620# http accessible image (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000621#http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz
622
Lucian Petrut1cfe2982015-01-06 13:57:36 +0200623# Timeout in seconds to wait for an image to become available.
624# (integer value)
625#build_timeout = 300
626
627# Time in seconds between image operation status checks. (integer
628# value)
629#build_interval = 1
630
Sean Daguefc691e32014-01-03 08:51:54 -0500631
632[image-feature-enabled]
633
634#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000635# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500636#
637
Jon Grimm270bd7f2014-08-05 18:11:29 +0000638# Is the v2 image API enabled (boolean value)
639#api_v2 = true
Sean Daguefc691e32014-01-03 08:51:54 -0500640
Matthew Treinishc603d162015-01-05 20:03:40 -0500641# Is the v1 image API enabled (boolean value)
642#api_v1 = true
643
bkopilov81aaae72015-05-15 23:46:25 +0300644# Is the deactivate-image feature enabled. The feature has been
645# integrated since Kilo. (boolean value)
646#deactivate_image = false
647
Sean Daguefc691e32014-01-03 08:51:54 -0500648
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000649[input-scenario]
650
651#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000652# From tempest.config
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000653#
654
Jon Grimm270bd7f2014-08-05 18:11:29 +0000655# Matching images become parameters for scenario tests (string value)
656#image_regex = ^cirros-0.3.1-x86_64-uec$
657
Matthew Treinishc603d162015-01-05 20:03:40 -0500658# Matching flavors become parameters for scenario tests (string value)
659#flavor_regex = ^m1.nano$
660
Jon Grimm270bd7f2014-08-05 18:11:29 +0000661# SSH verification in tests is skippedfor matching images (string
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000662# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000663#non_ssh_image_regex = ^.*[Ww]in.*$
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000664
Jon Grimm270bd7f2014-08-05 18:11:29 +0000665# List of user mapped to regex to matching image names. (string value)
Marc Koderer07f5a522015-03-27 15:02:41 +0100666#ssh_user_regex = [["^.*[Cc]irros.*$", "cirros"]]
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000667
668
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300669[messaging]
670
671#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000672# From tempest.config
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300673#
674
675# Catalog type of the Messaging service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000676#catalog_type = messaging
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300677
Matthew Treinishc603d162015-01-05 20:03:40 -0500678# The maximum number of queue records per page when listing queues
679# (integer value)
680#max_queues_per_page = 20
Jon Grimm270bd7f2014-08-05 18:11:29 +0000681
Matthew Treinishc603d162015-01-05 20:03:40 -0500682# The maximum metadata size for a queue (integer value)
683#max_queue_metadata = 65536
Jon Grimm270bd7f2014-08-05 18:11:29 +0000684
685# The maximum number of queue message per page when listing (or)
686# posting messages (integer value)
687#max_messages_per_page = 20
688
Matthew Treinishc603d162015-01-05 20:03:40 -0500689# The maximum size of a message body (integer value)
690#max_message_size = 262144
Jon Grimm270bd7f2014-08-05 18:11:29 +0000691
Matthew Treinishc603d162015-01-05 20:03:40 -0500692# The maximum number of messages per claim (integer value)
693#max_messages_per_claim = 20
694
695# The maximum ttl for a message (integer value)
696#max_message_ttl = 1209600
697
698# The maximum ttl for a claim (integer value)
699#max_claim_ttl = 43200
700
701# The maximum grace period for a claim (integer value)
702#max_claim_grace = 43200
Victoria Martínez de la Cruz1173b6e2014-09-22 18:32:13 -0300703
704
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100705[negative]
706
707#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000708# From tempest.config
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100709#
710
711# Test generator class for all negative tests (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000712#test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator
Marc Koderer6ee82dc2014-02-17 10:26:29 +0100713
714
Sean Daguefc691e32014-01-03 08:51:54 -0500715[network]
716
717#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000718# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500719#
720
721# Catalog type of the Neutron service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000722#catalog_type = network
723
Sean Daguefc691e32014-01-03 08:51:54 -0500724# The network region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +0000725# identity.region is used instead. If no such region is found in the
726# service catalog, the first found one is used. (string value)
727#region =
Sean Daguefc691e32014-01-03 08:51:54 -0500728
Matthew Treinishc603d162015-01-05 20:03:40 -0500729# The endpoint type to use for the network service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400730# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500731#endpoint_type = publicURL
732
Jon Grimm270bd7f2014-08-05 18:11:29 +0000733# The cidr block to allocate tenant ipv4 subnets from (string value)
734#tenant_network_cidr = 10.100.0.0/16
Sean Daguefc691e32014-01-03 08:51:54 -0500735
Henry Gessauffda37a2014-01-16 11:17:55 -0500736# The mask bits for tenant ipv4 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000737#tenant_network_mask_bits = 28
Sean Daguefc691e32014-01-03 08:51:54 -0500738
Jon Grimm270bd7f2014-08-05 18:11:29 +0000739# The cidr block to allocate tenant ipv6 subnets from (string value)
740#tenant_network_v6_cidr = 2003::/48
Henry Gessauffda37a2014-01-16 11:17:55 -0500741
742# The mask bits for tenant ipv6 subnets (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000743#tenant_network_v6_mask_bits = 64
Henry Gessauffda37a2014-01-16 11:17:55 -0500744
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000745# Whether tenant networks can be reached directly from the test
746# client. This must be set to True when the 'fixed' ssh_connect_method
747# is selected. (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000748#tenant_networks_reachable = false
Attila Fazekas640392b2014-06-12 15:58:10 +0200749
Matthew Treinishc603d162015-01-05 20:03:40 -0500750# Id of the public network that provides external connectivity (string
751# value)
752#public_network_id =
753
Joseph Lanoux2f81cc12015-01-12 16:01:20 +0000754# Default floating network name. Used to allocate floating IPs when
755# neutron is enabled. (string value)
756#floating_network_name = <None>
757
Matthew Treinishc603d162015-01-05 20:03:40 -0500758# Id of the public router that provides external connectivity. This
759# should only be used when Neutron's 'allow_overlapping_ips' is set to
760# 'False' in neutron.conf. usually not needed past 'Grizzly' release
761# (string value)
762#public_router_id =
763
764# Timeout in seconds to wait for network operation to complete.
765# (integer value)
766#build_timeout = 300
767
768# Time in seconds between network operation status checks. (integer
769# value)
770#build_interval = 1
771
772# List of dns servers which should be used for subnet creation (list
773# value)
774#dns_servers = 8.8.8.8,8.8.4.4
775
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200776# vnic_type to use when Launching instances with pre-configured ports.
777# Supported ports are: ['normal','direct','macvtap'] (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400778# Allowed values: <None>, normal, direct, macvtap
Itzik Brown2ca01cd2014-12-08 12:58:20 +0200779#port_vnic_type = <None>
780
Sean Daguefc691e32014-01-03 08:51:54 -0500781
782[network-feature-enabled]
783
784#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000785# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500786#
787
Matthew Treinishc603d162015-01-05 20:03:40 -0500788# Allow the execution of IPv6 tests (boolean value)
789#ipv6 = true
790
Jon Grimm270bd7f2014-08-05 18:11:29 +0000791# A list of enabled network extensions with a special entry all which
792# indicates every extension is enabled. Empty list indicates all
793# extensions are disabled (list value)
794#api_extensions = all
795
Jon Grimm270bd7f2014-08-05 18:11:29 +0000796# Allow the execution of IPv6 subnet tests that use the extended IPv6
797# attributes ipv6_ra_mode and ipv6_address_mode (boolean value)
798#ipv6_subnet_attributes = false
Sean M. Collinsdd27a4d2014-05-13 10:33:15 -0400799
Itzik Brownbeb30d32015-03-29 09:42:54 +0300800# Does the test environment support changing port admin state (boolean
801# value)
802#port_admin_state_change = true
803
Sean Daguefc691e32014-01-03 08:51:54 -0500804
805[object-storage]
806
807#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000808# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500809#
810
811# Catalog type of the Object-Storage service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000812#catalog_type = object-store
Sean Daguefc691e32014-01-03 08:51:54 -0500813
Matthew Treinishc603d162015-01-05 20:03:40 -0500814# The object-storage region name to use. If empty, the value of
815# identity.region is used instead. If no such region is found in the
816# service catalog, the first found one is used. (string value)
817#region =
JordanP5d29b2c2013-12-18 13:56:03 +0000818
Jon Grimm270bd7f2014-08-05 18:11:29 +0000819# The endpoint type to use for the object-store service. (string
820# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400821# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +0000822#endpoint_type = publicURL
Sean Daguefc691e32014-01-03 08:51:54 -0500823
Matthew Treinishc603d162015-01-05 20:03:40 -0500824# Number of seconds to time on waiting for a container to container
825# synchronization complete. (integer value)
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900826#container_sync_timeout = 600
Matthew Treinishc603d162015-01-05 20:03:40 -0500827
828# Number of seconds to wait while looping to check the status of a
829# container to container synchronization (integer value)
830#container_sync_interval = 5
831
Jon Grimm270bd7f2014-08-05 18:11:29 +0000832# Role to add to users created for swift tests to enable creating
833# containers (string value)
834#operator_role = Member
Sean Daguefc691e32014-01-03 08:51:54 -0500835
Matthew Treinish998c91d2014-03-01 12:39:49 -0500836# User role that has reseller admin (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +0000837#reseller_admin_role = ResellerAdmin
Matthew Treinish998c91d2014-03-01 12:39:49 -0500838
Daisuke Morita1ac3ee02014-08-25 12:59:18 +0900839# Name of sync realm. A sync realm is a set of clusters that have
840# agreed to allow container syncing with each other. Set the same
841# realm name as Swift's container-sync-realms.conf (string value)
842#realm_name = realm1
843
844# One name of cluster which is set in the realm whose name is set in
845# 'realm_name' item in this file. Set the same cluster name as Swift's
846# container-sync-realms.conf (string value)
847#cluster_name = name1
848
Sean Daguefc691e32014-01-03 08:51:54 -0500849
850[object-storage-feature-enabled]
851
852#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000853# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -0500854#
855
Jon Grimm270bd7f2014-08-05 18:11:29 +0000856# A list of the enabled optional discoverable apis. A single entry,
857# all, indicates that all of these features are expected to be enabled
858# (list value)
859#discoverable_apis = all
860
Matthew Treinishc603d162015-01-05 20:03:40 -0500861# Execute (old style) container-sync tests (boolean value)
862#container_sync = true
863
Jon Grimm270bd7f2014-08-05 18:11:29 +0000864# Execute object-versioning tests (boolean value)
865#object_versioning = true
Daisuke Morita20a183f2014-08-25 14:43:36 +0900866
Matthew Treinishc603d162015-01-05 20:03:40 -0500867# Execute discoverability tests (boolean value)
868#discoverability = true
869
Sean Daguefc691e32014-01-03 08:51:54 -0500870
Matthew Treinish3d468112013-10-24 21:49:14 +0000871[orchestration]
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900872
Matthew Treinish3d468112013-10-24 21:49:14 +0000873#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000874# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000875#
Attila Fazekas86950732013-06-08 09:33:08 +0200876
Matthew Treinishc603d162015-01-05 20:03:40 -0500877# Catalog type of the Orchestration service. (string value)
878#catalog_type = orchestration
879
880# The orchestration region name to use. If empty, the value of
881# identity.region is used instead. If no such region is found in the
882# service catalog, the first found one is used. (string value)
883#region =
884
885# The endpoint type to use for the orchestration service. (string
886# value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400887# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -0500888#endpoint_type = publicURL
889
Matthew Treinishdb9721d2015-03-18 14:21:28 -0400890# Role required for users to be able to manage stacks (string value)
891#stack_owner_role = heat_stack_owner
892
Jon Grimm270bd7f2014-08-05 18:11:29 +0000893# Time in seconds between build status checks. (integer value)
894#build_interval = 1
895
896# Timeout in seconds to wait for a stack to build. (integer value)
897#build_timeout = 1200
898
Matthew Treinishc603d162015-01-05 20:03:40 -0500899# Instance type for tests. Needs to be big enough for a full OS plus
900# the test workload (string value)
901#instance_type = m1.micro
Jon Grimm270bd7f2014-08-05 18:11:29 +0000902
Jon Grimm270bd7f2014-08-05 18:11:29 +0000903# Name of existing keypair to launch servers with. (string value)
904#keypair_name = <None>
905
906# Value must match heat configuration of the same name. (integer
907# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500908#max_template_size = 524288
Jon Grimm270bd7f2014-08-05 18:11:29 +0000909
910# Value must match heat configuration of the same name. (integer
911# value)
Matthew Treinishc603d162015-01-05 20:03:40 -0500912#max_resources_per_stack = 1000
Steven Hardyfdc6bd72014-03-21 16:56:04 +0000913
Matthew Treinish3d468112013-10-24 21:49:14 +0000914
Doug Hellmann583ce2c2015-03-11 14:55:46 +0000915[oslo_concurrency]
916
917#
918# From oslo.concurrency
919#
920
921# Enables or disables inter-process locks. (boolean value)
922# Deprecated group/name - [DEFAULT]/disable_process_locking
923#disable_process_locking = false
924
925# Directory to use for lock files. For security, the specified
926# directory should only be writable by the user running the processes
927# that need locking. Defaults to environment variable OSLO_LOCK_PATH.
928# If external locks are used, a lock path must be set. (string value)
929# Deprecated group/name - [DEFAULT]/lock_path
930#lock_path = <None>
931
932
Sean Daguefc691e32014-01-03 08:51:54 -0500933[scenario]
Matthew Treinish3d468112013-10-24 21:49:14 +0000934
935#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000936# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000937#
938
Matthew Treinishc603d162015-01-05 20:03:40 -0500939# Directory containing image files (string value)
940#img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec
941
942# Image file name (string value)
943# Deprecated group/name - [DEFAULT]/qcow2_img_file
944#img_file = cirros-0.3.1-x86_64-disk.img
945
946# Image disk format (string value)
947#img_disk_format = qcow2
948
949# Image container format (string value)
950#img_container_format = bare
Jon Grimm270bd7f2014-08-05 18:11:29 +0000951
Evgeny Antyshev7ba0d5f2015-04-28 13:18:07 +0000952# Glance image properties. Use for custom images which require them
953# (dict value)
954#img_properties = <None>
955
Jon Grimm270bd7f2014-08-05 18:11:29 +0000956# AMI image file name (string value)
957#ami_img_file = cirros-0.3.1-x86_64-blank.img
958
959# ARI image file name (string value)
960#ari_img_file = cirros-0.3.1-x86_64-initrd
961
Matthew Treinishc603d162015-01-05 20:03:40 -0500962# AKI image file name (string value)
963#aki_img_file = cirros-0.3.1-x86_64-vmlinuz
Jon Grimm270bd7f2014-08-05 18:11:29 +0000964
Matthew Treinishc603d162015-01-05 20:03:40 -0500965# ssh username for the image file (string value)
966#ssh_user = cirros
Alessandro Pilottib7c1daa2014-08-16 14:24:13 +0300967
Jon Grimm270bd7f2014-08-05 18:11:29 +0000968# specifies how many resources to request at once. Used for large
969# operations testing. (integer value)
970#large_ops_number = 0
Sean Daguefc691e32014-01-03 08:51:54 -0500971
Yair Fried413bf2d2014-11-19 17:07:11 +0200972# DHCP client used by images to renew DCHP lease. If left empty,
973# update operation will be skipped. Supported clients: "udhcpc",
974# "dhclient" (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -0400975# Allowed values: udhcpc, dhclient
Yair Fried413bf2d2014-11-19 17:07:11 +0200976#dhcp_client = udhcpc
977
Matthew Treinish3d468112013-10-24 21:49:14 +0000978
979[service_available]
980
981#
Jon Grimm270bd7f2014-08-05 18:11:29 +0000982# From tempest.config
Matthew Treinish3d468112013-10-24 21:49:14 +0000983#
984
Jon Grimm270bd7f2014-08-05 18:11:29 +0000985# Whether or not cinder is expected to be available (boolean value)
986#cinder = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000987
Jon Grimm270bd7f2014-08-05 18:11:29 +0000988# Whether or not neutron is expected to be available (boolean value)
989#neutron = false
Matthew Treinish3d468112013-10-24 21:49:14 +0000990
Matthew Treinishc603d162015-01-05 20:03:40 -0500991# Whether or not glance is expected to be available (boolean value)
992#glance = true
993
994# Whether or not swift is expected to be available (boolean value)
995#swift = true
996
Jon Grimm270bd7f2014-08-05 18:11:29 +0000997# Whether or not nova is expected to be available (boolean value)
998#nova = true
Matthew Treinish3d468112013-10-24 21:49:14 +0000999
Matthew Treinishc603d162015-01-05 20:03:40 -05001000# Whether or not Heat is expected to be available (boolean value)
1001#heat = false
1002
1003# Whether or not Ceilometer is expected to be available (boolean
1004# value)
1005#ceilometer = true
1006
1007# Whether or not Horizon is expected to be available (boolean value)
1008#horizon = true
1009
Jon Grimm270bd7f2014-08-05 18:11:29 +00001010# Whether or not Sahara is expected to be available (boolean value)
1011#sahara = false
Matthew Treinishe3d26142013-11-26 19:14:58 +00001012
Matthew Treinishc603d162015-01-05 20:03:40 -05001013# Whether or not Ironic is expected to be available (boolean value)
1014#ironic = false
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +03001015
Jon Grimm270bd7f2014-08-05 18:11:29 +00001016# Whether or not Trove is expected to be available (boolean value)
1017#trove = false
Nikhil Manchandadd6886f2014-03-03 01:58:45 -08001018
Jon Grimm270bd7f2014-08-05 18:11:29 +00001019# Whether or not Zaqar is expected to be available (boolean value)
1020#zaqar = false
Malini Kamalambal6e7b3b82014-02-06 06:49:04 -05001021
Matthew Treinish3d468112013-10-24 21:49:14 +00001022
Sean Daguefc691e32014-01-03 08:51:54 -05001023[stress]
1024
1025#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001026# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001027#
1028
Matthew Treinishc603d162015-01-05 20:03:40 -05001029# Directory containing log files on the compute nodes (string value)
1030#nova_logdir = <None>
1031
1032# Maximum number of instances to create during test. (integer value)
1033#max_instances = 16
1034
Jon Grimm270bd7f2014-08-05 18:11:29 +00001035# Controller host. (string value)
1036#controller = <None>
Sean Daguefc691e32014-01-03 08:51:54 -05001037
Matthew Treinishc603d162015-01-05 20:03:40 -05001038# Controller host. (string value)
1039#target_controller = <None>
1040
1041# ssh user. (string value)
1042#target_ssh_user = <None>
1043
1044# Path to private key. (string value)
1045#target_private_key_path = <None>
1046
1047# regexp for list of log files. (string value)
1048#target_logfiles = <None>
1049
1050# time (in seconds) between log file error checks. (integer value)
1051#log_check_interval = 60
1052
Jon Grimm270bd7f2014-08-05 18:11:29 +00001053# The number of threads created while stress test. (integer value)
1054#default_thread_number_per_action = 4
1055
Jon Grimm270bd7f2014-08-05 18:11:29 +00001056# Prevent the cleaning (tearDownClass()) between each stress test run
1057# if an exception occurs during this run. (boolean value)
1058#leave_dirty_stack = false
1059
Matthew Treinishc603d162015-01-05 20:03:40 -05001060# Allows a full cleaning process after a stress test. Caution : this
1061# cleanup will remove every objects of every tenant. (boolean value)
1062#full_clean_stack = false
Julien Leloupa5ee5422014-02-13 14:29:02 +01001063
Sean Daguefc691e32014-01-03 08:51:54 -05001064
1065[telemetry]
1066
1067#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001068# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001069#
1070
1071# Catalog type of the Telemetry service. (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001072#catalog_type = metering
Sean Daguefc691e32014-01-03 08:51:54 -05001073
Jon Grimm270bd7f2014-08-05 18:11:29 +00001074# The endpoint type to use for the telemetry service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001075# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Jon Grimm270bd7f2014-08-05 18:11:29 +00001076#endpoint_type = publicURL
1077
1078# This variable is used as flag to enable notification tests (boolean
JordanPfc62c902014-02-26 14:47:28 +00001079# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001080#too_slow_to_test = true
Vadim Rovachev7bcea352013-12-26 15:56:17 +04001081
Sean Daguefc691e32014-01-03 08:51:54 -05001082
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001083[validation]
1084
1085#
1086# From tempest.config
1087#
1088
Matthew Treinishe5cca002015-05-11 15:36:50 -04001089# Enable ssh on created servers and creation of additional validation
1090# resources to enable remote access (boolean value)
1091# Deprecated group/name - [compute]/run_ssh
1092#run_validation = false
1093
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001094# Default IP type used for validation: -fixed: uses the first IP
1095# belonging to the fixed network -floating: creates and uses a
1096# floating IP (string value)
1097# Allowed values: fixed, floating
1098#connect_method = floating
1099
1100# Default authentication method to the instance. Only ssh via keypair
1101# is supported for now. Additional methods will be handled in a
1102# separate spec. (string value)
1103# Allowed values: keypair
1104#auth_method = keypair
1105
1106# Default IP version for ssh connections. (integer value)
nithya-ganesan67da2872015-02-08 23:13:48 +00001107# Deprecated group/name - [compute]/ip_version_for_ssh
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001108#ip_version_for_ssh = 4
1109
1110# Timeout in seconds to wait for ping to succeed. (integer value)
1111#ping_timeout = 120
1112
1113# Timeout in seconds to wait for the TCP connection to be successful.
1114# (integer value)
nithya-ganesan67da2872015-02-08 23:13:48 +00001115# Deprecated group/name - [compute]/ssh_channel_timeout
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001116#connect_timeout = 60
1117
1118# Timeout in seconds to wait for the ssh banner. (integer value)
nithya-ganesan67da2872015-02-08 23:13:48 +00001119# Deprecated group/name - [compute]/ssh_timeout
Joseph Lanoux2f81cc12015-01-12 16:01:20 +00001120#ssh_timeout = 300
1121
1122
Sean Daguefc691e32014-01-03 08:51:54 -05001123[volume]
1124
1125#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001126# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001127#
1128
Jon Grimm270bd7f2014-08-05 18:11:29 +00001129# Time in seconds between volume availability checks. (integer value)
1130#build_interval = 1
Sean Daguefc691e32014-01-03 08:51:54 -05001131
Eric Harney9b1f89c2014-10-14 14:40:19 -04001132# Timeout in seconds to wait for a volume to become available.
Sean Daguefc691e32014-01-03 08:51:54 -05001133# (integer value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001134#build_timeout = 300
Sean Daguefc691e32014-01-03 08:51:54 -05001135
1136# Catalog type of the Volume Service (string value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001137#catalog_type = volume
1138
Sean Daguefc691e32014-01-03 08:51:54 -05001139# The volume region name to use. If empty, the value of
Jon Grimm270bd7f2014-08-05 18:11:29 +00001140# identity.region is used instead. If no such region is found in the
1141# service catalog, the first found one is used. (string value)
1142#region =
1143
Matthew Treinishc603d162015-01-05 20:03:40 -05001144# The endpoint type to use for the volume service. (string value)
Davanum Srinivasefead032015-03-09 17:27:42 -04001145# Allowed values: public, admin, internal, publicURL, adminURL, internalURL
Matthew Treinishc603d162015-01-05 20:03:40 -05001146#endpoint_type = publicURL
1147
1148# Name of the backend1 (must be declared in cinder.conf) (string
1149# value)
1150#backend1_name = BACKEND_1
1151
1152# Name of the backend2 (must be declared in cinder.conf) (string
1153# value)
1154#backend2_name = BACKEND_2
1155
Jon Grimm270bd7f2014-08-05 18:11:29 +00001156# Backend protocol to target when creating volume types (string value)
1157#storage_protocol = iSCSI
1158
1159# Backend vendor to target when creating volume types (string value)
1160#vendor_name = Open Source
1161
Matthew Treinishc603d162015-01-05 20:03:40 -05001162# Disk format to use when copying a volume to image (string value)
1163#disk_format = raw
1164
Jon Grimm270bd7f2014-08-05 18:11:29 +00001165# Default size in GB for volumes created by volumes tests (integer
Sean Daguefc691e32014-01-03 08:51:54 -05001166# value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001167#volume_size = 1
Jerry Cai9733d0e2014-03-19 15:50:49 +08001168
Sean Daguefc691e32014-01-03 08:51:54 -05001169
1170[volume-feature-enabled]
1171
1172#
Jon Grimm270bd7f2014-08-05 18:11:29 +00001173# From tempest.config
Sean Daguefc691e32014-01-03 08:51:54 -05001174#
1175
Matthew Treinishc603d162015-01-05 20:03:40 -05001176# Runs Cinder multi-backend test (requires 2 backends) (boolean value)
1177#multi_backend = false
1178
1179# Runs Cinder volumes backup test (boolean value)
1180#backup = true
1181
1182# Runs Cinder volume snapshot test (boolean value)
1183#snapshot = true
1184
Jon Grimm270bd7f2014-08-05 18:11:29 +00001185# A list of enabled volume extensions with a special entry all which
1186# indicates every extension is enabled. Empty list indicates all
1187# extensions are disabled (list value)
1188#api_extensions = all
Zhi Kun Liude25c022014-02-14 13:25:19 +08001189
Sean Daguefc691e32014-01-03 08:51:54 -05001190# Is the v1 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001191#api_v1 = true
Sean Daguefc691e32014-01-03 08:51:54 -05001192
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +08001193# Is the v2 volume API enabled (boolean value)
Jon Grimm270bd7f2014-08-05 18:11:29 +00001194#api_v2 = true
bkopilov8a657ae2015-05-11 11:45:23 +03001195
1196# Update bootable status of a volume Not implemented on icehouse
1197# (boolean value)
1198#bootable = false