Matthew Treinish | f4a9b0f | 2013-07-26 16:58:26 -0400 | [diff] [blame] | 1 | [DEFAULT] |
Attila Fazekas | bfd96e1 | 2013-07-31 17:19:10 +0200 | [diff] [blame] | 2 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 3 | # |
Doug Hellmann | 583ce2c | 2015-03-11 14:55:46 +0000 | [diff] [blame] | 4 | # From oslo.log |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 5 | # |
| 6 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 7 | # Print debugging output (set logging level to DEBUG instead of |
| 8 | # default WARNING level). (boolean value) |
| 9 | #debug = false |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 10 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 11 | # Print more verbose output (set logging level to INFO instead of |
| 12 | # default WARNING level). (boolean value) |
| 13 | #verbose = false |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 14 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 15 | # 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 Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 18 | # (string value) |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 19 | # Deprecated group/name - [DEFAULT]/log_config |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 20 | #log_config_append = <None> |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 21 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 22 | # 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 Dague | 2bbdf42 | 2014-07-11 07:58:33 -0400 | [diff] [blame] | 27 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 28 | # 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 Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 41 | |
Ken'ichi Ohmichi | 3ecece8 | 2015-06-23 23:57:08 +0000 | [diff] [blame] | 42 | # Use syslog for logging. Existing syslog format is DEPRECATED and |
| 43 | # will be changed later to honor RFC5424. (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 44 | #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 Bot | 8fba8d3 | 2015-05-11 15:52:49 +0000 | [diff] [blame] | 48 | # (RFC5424). The format without the APP-NAME is deprecated in K, and |
David Kranz | 7068d88 | 2015-05-27 16:54:15 -0400 | [diff] [blame] | 49 | # 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 Bot | 8fba8d3 | 2015-05-11 15:52:49 +0000 | [diff] [blame] | 52 | #use_syslog_rfc_format = true |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 53 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 54 | # Syslog facility to receive log lines. (string value) |
| 55 | #syslog_log_facility = LOG_USER |
| 56 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 57 | # Log output to standard error. (boolean value) |
| 58 | #use_stderr = true |
| 59 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 60 | # 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 Kranz | 7068d88 | 2015-05-27 16:54:15 -0400 | [diff] [blame] | 72 | #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 73 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 74 | # List of logger=LEVEL pairs. (list value) |
Doug Hellmann | 583ce2c | 2015-03-11 14:55:46 +0000 | [diff] [blame] | 75 | #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 Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 76 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 77 | # Enables or disables publication of error events. (boolean value) |
| 78 | #publish_errors = false |
| 79 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 80 | # 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 Kranz | 7068d88 | 2015-05-27 16:54:15 -0400 | [diff] [blame] | 88 | # Enables or disables fatal status of deprecations. (boolean value) |
| 89 | #fatal_deprecations = false |
| 90 | |
Marc Koderer | b714de5 | 2013-08-08 09:21:46 +0200 | [diff] [blame] | 91 | |
Matthew Treinish | c791ac4 | 2014-07-16 09:15:23 -0400 | [diff] [blame] | 92 | [auth] |
| 93 | |
| 94 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 95 | # From tempest.config |
Matthew Treinish | c791ac4 | 2014-07-16 09:15:23 -0400 | [diff] [blame] | 96 | # |
| 97 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 98 | # Path to the yaml file that contains the list of credentials to use |
Matthew Treinish | fc7cd8f | 2015-03-30 11:51:55 -0400 | [diff] [blame] | 99 | # 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 Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 105 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 106 | # 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 Frittoli | 8283b4e | 2014-07-17 13:28:58 +0100 | [diff] [blame] | 110 | # Deprecated group/name - [compute]/allow_tenant_isolation |
| 111 | # Deprecated group/name - [orchestration]/allow_tenant_isolation |
Attila Fazekas | 5dda158 | 2015-02-18 17:16:02 +0100 | [diff] [blame] | 112 | #allow_tenant_isolation = true |
Andrea Frittoli | 8283b4e | 2014-07-17 13:28:58 +0100 | [diff] [blame] | 113 | |
Matthew Treinish | 167b2be | 2015-01-15 17:20:27 -0500 | [diff] [blame] | 114 | # Roles to assign to all users created by tempest (list value) |
| 115 | #tempest_roles = |
| 116 | |
Andrea Frittoli | c328015 | 2015-02-26 12:42:34 +0000 | [diff] [blame] | 117 | # 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 Treinish | 2219d38 | 2015-04-24 10:33:04 -0400 | [diff] [blame] | 122 | # 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 Treinish | c791ac4 | 2014-07-16 09:15:23 -0400 | [diff] [blame] | 130 | |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 131 | [baremetal] |
| 132 | |
| 133 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 134 | # From tempest.config |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 135 | # |
| 136 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 137 | # 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 Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 148 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 149 | #endpoint_type = publicURL |
| 150 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 151 | # Timeout for Ironic node to completely provision (integer value) |
| 152 | #active_timeout = 300 |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 153 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 154 | # Timeout for association of Nova instance and Ironic node (integer |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 155 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 156 | #association_timeout = 30 |
| 157 | |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 158 | # Timeout for Ironic power transitions. (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 159 | #power_timeout = 60 |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 160 | |
Devananda van der Veen | d1e52a9 | 2015-04-13 12:58:49 -0700 | [diff] [blame] | 161 | # 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 Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 164 | |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 165 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 166 | [boto] |
Sergey Lukjanov | cec6c3f | 2013-12-10 12:38:21 +0400 | [diff] [blame] | 167 | |
| 168 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 169 | # From tempest.config |
Sergey Lukjanov | cec6c3f | 2013-12-10 12:38:21 +0400 | [diff] [blame] | 170 | # |
| 171 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 172 | # EC2 URL (string value) |
| 173 | #ec2_url = http://localhost:8773/services/Cloud |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 174 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 175 | # S3 URL (string value) |
| 176 | #s3_url = http://localhost:8080 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 177 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 178 | # AWS Secret Key (string value) |
| 179 | #aws_secret = <None> |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 180 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 181 | # AWS Access Key (string value) |
| 182 | #aws_access = <None> |
| 183 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 184 | # AWS Zone for EC2 tests (string value) |
| 185 | #aws_zone = nova |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 186 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 187 | # S3 Materials Path (string value) |
| 188 | #s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0 |
| 189 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 190 | # 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 Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 213 | |
| 214 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 215 | [compute] |
| 216 | |
| 217 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 218 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 219 | # |
| 220 | |
Matthew Treinish | afcb6b4 | 2014-05-27 13:50:02 -0400 | [diff] [blame] | 221 | # Valid primary image reference to be used in tests. This is a |
| 222 | # required option (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 223 | #image_ref = <None> |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 224 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 225 | # 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 Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 229 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 230 | # 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 Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 235 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 236 | # User name used to authenticate to an instance. (string value) |
| 237 | #image_ssh_user = root |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 238 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 239 | # Password used to authenticate to an instance. (string value) |
| 240 | #image_ssh_password = password |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 241 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 242 | # User name used to authenticate to an instance using the alternate |
| 243 | # image. (string value) |
| 244 | #image_alt_ssh_user = root |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 245 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 246 | # Time in seconds between build status checks. (integer value) |
| 247 | #build_interval = 1 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 248 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 249 | # Timeout in seconds to wait for an instance to build. Other services |
Lucian Petrut | 1cfe298 | 2015-01-06 13:57:36 +0200 | [diff] [blame] | 250 | # that do not define build_timeout will inherit this value. (integer |
| 251 | # value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 252 | #build_timeout = 300 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 253 | |
David Kranz | 968f1b3 | 2015-06-18 16:58:18 -0400 | [diff] [blame] | 254 | # 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 Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 258 | # Auth method used for authenticate to the instance. Valid choices |
Joseph Lanoux | 2f81cc1 | 2015-01-12 16:01:20 +0000 | [diff] [blame] | 259 | # 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 Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 263 | #ssh_auth_method = keypair |
| 264 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 265 | # How to connect to the instance? fixed: using the first ip belongs |
Joseph Lanoux | 2f81cc1 | 2015-01-12 16:01:20 +0000 | [diff] [blame] | 266 | # the fixed network floating: creating and using a floating ip. |
| 267 | # (string value) |
| 268 | #ssh_connect_method = floating |
JordanP | 5d29b2c | 2013-12-18 13:56:03 +0000 | [diff] [blame] | 269 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 270 | # 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 Winters | f87059b | 2015-02-17 11:46:54 -0500 | [diff] [blame] | 276 | # 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 Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 284 | # Timeout in seconds to wait for authentication to succeed. (integer |
| 285 | # value) |
| 286 | #ssh_timeout = 300 |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 287 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 288 | # 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 Treinish | 03feae0 | 2015-03-27 10:25:45 -0400 | [diff] [blame] | 296 | # 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 Lanoux | 2f81cc1 | 2015-01-12 16:01:20 +0000 | [diff] [blame] | 299 | # 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 Treinish | 03feae0 | 2015-03-27 10:25:45 -0400 | [diff] [blame] | 301 | #fixed_network_name = <None> |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 302 | |
| 303 | # Network used for SSH connections. Ignored if |
Matthew Treinish | e5cca00 | 2015-05-11 15:36:50 -0400 | [diff] [blame] | 304 | # use_floatingip_for_ssh=true or run_validation=false. (string value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 305 | #network_for_ssh = public |
| 306 | |
| 307 | # IP version used for SSH connections. (integer value) |
| 308 | #ip_version_for_ssh = 4 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 309 | |
| 310 | # Does SSH use Floating IPs? (boolean value) |
| 311 | #use_floatingip_for_ssh = true |
| 312 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 313 | # 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 Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 322 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 323 | #endpoint_type = publicURL |
| 324 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 325 | # Expected device name when a volume is attached to an instance |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 326 | # (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 327 | #volume_device_name = vdb |
Sean Dague | 8219085 | 2014-05-24 07:42:59 -0400 | [diff] [blame] | 328 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 329 | # 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 Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 340 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 341 | [compute-feature-enabled] |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 342 | |
| 343 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 344 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 345 | # |
| 346 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 347 | # If false, skip disk config tests (boolean value) |
| 348 | #disk_config = true |
| 349 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 350 | # 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 Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 355 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 356 | # 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 Treinish | 20866a2 | 2014-06-12 14:58:36 -0400 | [diff] [blame] | 363 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 364 | # Does the test environment support resizing? (boolean value) |
| 365 | #resize = false |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 366 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 367 | # Does the test environment support pausing? (boolean value) |
| 368 | #pause = true |
Ghanshyam | 9c2e50d | 2014-07-22 21:32:05 +0900 | [diff] [blame] | 369 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 370 | # 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 Gandelman | 7186f7a | 2014-07-23 09:28:56 -0400 | [diff] [blame] | 376 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 377 | # Does the test environment support live migration available? (boolean |
| 378 | # value) |
Joe Gordon | 31a139a | 2014-11-17 16:39:04 -0800 | [diff] [blame] | 379 | #live_migration = true |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 380 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 381 | # 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 Gordon | 0a5788f | 2015-03-17 11:29:38 -0700 | [diff] [blame] | 386 | # volumes. Note, libvirt doesn't support this, see |
| 387 | # https://bugs.launchpad.net/nova/+bug/1398999 (boolean value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 388 | #block_migrate_cinder_iscsi = false |
| 389 | |
Matt Riedemann | bb9f704 | 2015-03-03 08:53:11 -0800 | [diff] [blame] | 390 | # 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 Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 395 | # 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 Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 402 | |
| 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 Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 411 | # 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 Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 414 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 415 | # Does the test environment support dynamic network interface |
| 416 | # attachment? (boolean value) |
| 417 | #interface_attach = true |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 418 | |
| 419 | # Does the test environment support creating snapshot images of |
| 420 | # running instances? (boolean value) |
| 421 | #snapshot = true |
| 422 | |
Matthew Treinish | dfd7ac0 | 2015-02-09 17:47:31 -0500 | [diff] [blame] | 423 | # Does the test environment have the ec2 api running? (boolean value) |
| 424 | #ec2_api = true |
| 425 | |
Matt Riedemann | 1794073 | 2015-03-13 14:18:19 +0000 | [diff] [blame] | 426 | # 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 | |
Matt Riedemann | 79b3b49 | 2015-06-20 14:20:44 -0700 | [diff] [blame] | 431 | # Does the test environment support attaching an encrypted volume to a |
| 432 | # running server instance? This may depend on the combination of |
| 433 | # compute_driver in nova and the volume_driver(s) in cinder. (boolean |
| 434 | # value) |
| 435 | #attach_encrypted_volume = true |
| 436 | |
Yassine Lamgarchal | b158d41 | 2013-12-27 19:29:42 +0100 | [diff] [blame] | 437 | |
Julie Pichon | d101764 | 2013-07-24 16:37:23 +0100 | [diff] [blame] | 438 | [dashboard] |
Julie Pichon | d101764 | 2013-07-24 16:37:23 +0100 | [diff] [blame] | 439 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 440 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 441 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 442 | # |
Julie Pichon | d101764 | 2013-07-24 16:37:23 +0100 | [diff] [blame] | 443 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 444 | # Where the dashboard can be found (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 445 | #dashboard_url = http://localhost/ |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 446 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 447 | # Login page for the dashboard (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 448 | #login_url = http://localhost/auth/login/ |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 449 | |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 450 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 451 | [data_processing] |
| 452 | |
| 453 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 454 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 455 | # |
| 456 | |
| 457 | # Catalog type of the data processing service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 458 | #catalog_type = data_processing |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 459 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 460 | # The endpoint type to use for the data processing service. (string |
| 461 | # value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 462 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 463 | #endpoint_type = publicURL |
JordanP | fc62c90 | 2014-02-26 14:47:28 +0000 | [diff] [blame] | 464 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 465 | |
Luigi Toscano | 14d172d | 2015-01-23 16:37:47 +0100 | [diff] [blame] | 466 | [data_processing-feature-enabled] |
| 467 | |
| 468 | # |
| 469 | # From tempest.config |
| 470 | # |
| 471 | |
| 472 | # List of enabled data processing plugins (list value) |
| 473 | #plugins = vanilla,hdp |
| 474 | |
| 475 | |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 476 | [database] |
| 477 | |
| 478 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 479 | # From tempest.config |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 480 | # |
| 481 | |
| 482 | # Catalog type of the Database service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 483 | #catalog_type = database |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 484 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 485 | # Valid primary flavor to use in database tests. (string value) |
| 486 | #db_flavor_ref = 1 |
Peter Stachowski | 320f9c7 | 2014-04-21 16:13:23 -0400 | [diff] [blame] | 487 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 488 | # Current database version to use in database tests. (string value) |
| 489 | #db_current_version = v1.0 |
| 490 | |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 491 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 492 | [debug] |
| 493 | |
| 494 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 495 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 496 | # |
| 497 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 498 | # A regex to determine which requests should be traced. This is a |
| 499 | # regex to match the caller for rest client requests to be able to |
| 500 | # selectively trace calls out of specific classes and methods. It |
| 501 | # largely exists for test development, and is not expected to be used |
| 502 | # in a real deploy of tempest. This will be matched against the |
| 503 | # discovered ClassName:method in the test environment. Expected |
| 504 | # values for this field are: * ClassName:test_method_name - traces |
| 505 | # one test_method * ClassName:setUp(Class) - traces specific setup |
| 506 | # functions * ClassName:tearDown(Class) - traces specific teardown |
| 507 | # functions * ClassName:_run_cleanups - traces the cleanup functions |
| 508 | # If nothing is specified, this feature is not enabled. To trace |
| 509 | # everything specify .* as the regex. (string value) |
| 510 | #trace_requests = |
Sean Dague | c522c09 | 2014-03-24 10:43:22 -0400 | [diff] [blame] | 511 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 512 | |
| 513 | [identity] |
| 514 | |
| 515 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 516 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 517 | # |
| 518 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 519 | # Catalog type of the Identity service. (string value) |
| 520 | #catalog_type = identity |
| 521 | |
| 522 | # Set to True if using self-signed SSL certificates. (boolean value) |
| 523 | #disable_ssl_certificate_validation = false |
| 524 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 525 | # Specify a CA bundle file to use in verifying a TLS (https) server |
| 526 | # certificate. (string value) |
| 527 | #ca_certificates_file = <None> |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 528 | |
| 529 | # Full URI of the OpenStack Identity API (Keystone), v2 (string value) |
| 530 | #uri = <None> |
| 531 | |
| 532 | # Full URI of the OpenStack Identity API (Keystone), v3 (string value) |
| 533 | #uri_v3 = <None> |
| 534 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 535 | # Identity API version to be used for authentication for API tests. |
| 536 | # (string value) |
| 537 | #auth_version = v2 |
| 538 | |
| 539 | # The identity region name to use. Also used as the other services' |
| 540 | # region name unless they are set explicitly. If no such region is |
| 541 | # found in the service catalog, the first found one is used. (string |
| 542 | # value) |
| 543 | #region = RegionOne |
| 544 | |
| 545 | # The endpoint type to use for the identity service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 546 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 547 | #endpoint_type = publicURL |
| 548 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 549 | # Username to use for Nova API requests. (string value) |
| 550 | #username = <None> |
Andrea Frittoli | b1b04bb | 2014-04-06 11:57:07 +0100 | [diff] [blame] | 551 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 552 | # Tenant name to use for Nova API requests. (string value) |
| 553 | #tenant_name = <None> |
| 554 | |
| 555 | # Role required to administrate keystone. (string value) |
| 556 | #admin_role = admin |
| 557 | |
| 558 | # API key to use when authenticating. (string value) |
| 559 | #password = <None> |
| 560 | |
| 561 | # Domain name for authentication (Keystone V3).The same domain applies |
| 562 | # to user and project (string value) |
| 563 | #domain_name = <None> |
| 564 | |
| 565 | # Username of alternate user to use for Nova API requests. (string |
| 566 | # value) |
| 567 | #alt_username = <None> |
| 568 | |
| 569 | # Alternate user's Tenant name to use for Nova API requests. (string |
| 570 | # value) |
| 571 | #alt_tenant_name = <None> |
| 572 | |
| 573 | # API key to use when authenticating as alternate user. (string value) |
| 574 | #alt_password = <None> |
| 575 | |
| 576 | # Alternate domain name for authentication (Keystone V3).The same |
| 577 | # domain applies to user and project (string value) |
| 578 | #alt_domain_name = <None> |
| 579 | |
| 580 | # Administrative Username to use for Keystone API requests. (string |
| 581 | # value) |
| 582 | #admin_username = <None> |
| 583 | |
| 584 | # Administrative Tenant name to use for Keystone API requests. (string |
| 585 | # value) |
| 586 | #admin_tenant_name = <None> |
| 587 | |
| 588 | # API key to use when authenticating as admin. (string value) |
| 589 | #admin_password = <None> |
| 590 | |
| 591 | # Admin domain name for authentication (Keystone V3).The same domain |
| 592 | # applies to user and project (string value) |
| 593 | #admin_domain_name = <None> |
| 594 | |
Martin Pavlasek | 4c3f2ab | 2014-04-15 17:15:15 +0200 | [diff] [blame] | 595 | # ID of the default domain (string value) |
| 596 | #default_domain_id = default |
| 597 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 598 | |
Matthew Treinish | d5021a7 | 2014-01-09 18:42:51 +0000 | [diff] [blame] | 599 | [identity-feature-enabled] |
| 600 | |
| 601 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 602 | # From tempest.config |
Matthew Treinish | d5021a7 | 2014-01-09 18:42:51 +0000 | [diff] [blame] | 603 | # |
| 604 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 605 | # Does the identity service have delegation and impersonation enabled |
| 606 | # (boolean value) |
| 607 | #trust = true |
| 608 | |
Matthew Treinish | db2c597 | 2014-01-31 22:18:59 +0000 | [diff] [blame] | 609 | # Is the v2 identity API enabled (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 610 | #api_v2 = true |
Matthew Treinish | db2c597 | 2014-01-31 22:18:59 +0000 | [diff] [blame] | 611 | |
| 612 | # Is the v3 identity API enabled (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 613 | #api_v3 = true |
| 614 | |
Matthew Treinish | d5021a7 | 2014-01-09 18:42:51 +0000 | [diff] [blame] | 615 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 616 | [image] |
| 617 | |
| 618 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 619 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 620 | # |
| 621 | |
| 622 | # Catalog type of the Image service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 623 | #catalog_type = image |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 624 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 625 | # The image region name to use. If empty, the value of identity.region |
| 626 | # is used instead. If no such region is found in the service catalog, |
| 627 | # the first found one is used. (string value) |
| 628 | #region = |
| 629 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 630 | # The endpoint type to use for the image service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 631 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 632 | #endpoint_type = publicURL |
JordanP | 5d29b2c | 2013-12-18 13:56:03 +0000 | [diff] [blame] | 633 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 634 | # http accessible image (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 635 | #http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz |
| 636 | |
Lucian Petrut | 1cfe298 | 2015-01-06 13:57:36 +0200 | [diff] [blame] | 637 | # Timeout in seconds to wait for an image to become available. |
| 638 | # (integer value) |
| 639 | #build_timeout = 300 |
| 640 | |
| 641 | # Time in seconds between image operation status checks. (integer |
| 642 | # value) |
| 643 | #build_interval = 1 |
| 644 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 645 | |
| 646 | [image-feature-enabled] |
| 647 | |
| 648 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 649 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 650 | # |
| 651 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 652 | # Is the v2 image API enabled (boolean value) |
| 653 | #api_v2 = true |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 654 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 655 | # Is the v1 image API enabled (boolean value) |
| 656 | #api_v1 = true |
| 657 | |
bkopilov | 81aaae7 | 2015-05-15 23:46:25 +0300 | [diff] [blame] | 658 | # Is the deactivate-image feature enabled. The feature has been |
| 659 | # integrated since Kilo. (boolean value) |
| 660 | #deactivate_image = false |
| 661 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 662 | |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 663 | [input-scenario] |
| 664 | |
| 665 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 666 | # From tempest.config |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 667 | # |
| 668 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 669 | # Matching images become parameters for scenario tests (string value) |
| 670 | #image_regex = ^cirros-0.3.1-x86_64-uec$ |
| 671 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 672 | # Matching flavors become parameters for scenario tests (string value) |
| 673 | #flavor_regex = ^m1.nano$ |
| 674 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 675 | # SSH verification in tests is skippedfor matching images (string |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 676 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 677 | #non_ssh_image_regex = ^.*[Ww]in.*$ |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 678 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 679 | # List of user mapped to regex to matching image names. (string value) |
Marc Koderer | 07f5a52 | 2015-03-27 15:02:41 +0100 | [diff] [blame] | 680 | #ssh_user_regex = [["^.*[Cc]irros.*$", "cirros"]] |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 681 | |
| 682 | |
Victoria MartÃnez de la Cruz | 1173b6e | 2014-09-22 18:32:13 -0300 | [diff] [blame] | 683 | [messaging] |
| 684 | |
| 685 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 686 | # From tempest.config |
Victoria MartÃnez de la Cruz | 1173b6e | 2014-09-22 18:32:13 -0300 | [diff] [blame] | 687 | # |
| 688 | |
| 689 | # Catalog type of the Messaging service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 690 | #catalog_type = messaging |
Victoria MartÃnez de la Cruz | 1173b6e | 2014-09-22 18:32:13 -0300 | [diff] [blame] | 691 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 692 | # The maximum number of queue records per page when listing queues |
| 693 | # (integer value) |
| 694 | #max_queues_per_page = 20 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 695 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 696 | # The maximum metadata size for a queue (integer value) |
| 697 | #max_queue_metadata = 65536 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 698 | |
| 699 | # The maximum number of queue message per page when listing (or) |
| 700 | # posting messages (integer value) |
| 701 | #max_messages_per_page = 20 |
| 702 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 703 | # The maximum size of a message body (integer value) |
| 704 | #max_message_size = 262144 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 705 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 706 | # The maximum number of messages per claim (integer value) |
| 707 | #max_messages_per_claim = 20 |
| 708 | |
| 709 | # The maximum ttl for a message (integer value) |
| 710 | #max_message_ttl = 1209600 |
| 711 | |
| 712 | # The maximum ttl for a claim (integer value) |
| 713 | #max_claim_ttl = 43200 |
| 714 | |
| 715 | # The maximum grace period for a claim (integer value) |
| 716 | #max_claim_grace = 43200 |
Victoria MartÃnez de la Cruz | 1173b6e | 2014-09-22 18:32:13 -0300 | [diff] [blame] | 717 | |
| 718 | |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 719 | [negative] |
| 720 | |
| 721 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 722 | # From tempest.config |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 723 | # |
| 724 | |
| 725 | # Test generator class for all negative tests (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 726 | #test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 727 | |
| 728 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 729 | [network] |
| 730 | |
| 731 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 732 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 733 | # |
| 734 | |
| 735 | # Catalog type of the Neutron service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 736 | #catalog_type = network |
| 737 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 738 | # The network region name to use. If empty, the value of |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 739 | # identity.region is used instead. If no such region is found in the |
| 740 | # service catalog, the first found one is used. (string value) |
| 741 | #region = |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 742 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 743 | # The endpoint type to use for the network service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 744 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 745 | #endpoint_type = publicURL |
| 746 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 747 | # The cidr block to allocate tenant ipv4 subnets from (string value) |
| 748 | #tenant_network_cidr = 10.100.0.0/16 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 749 | |
Henry Gessau | ffda37a | 2014-01-16 11:17:55 -0500 | [diff] [blame] | 750 | # The mask bits for tenant ipv4 subnets (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 751 | #tenant_network_mask_bits = 28 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 752 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 753 | # The cidr block to allocate tenant ipv6 subnets from (string value) |
| 754 | #tenant_network_v6_cidr = 2003::/48 |
Henry Gessau | ffda37a | 2014-01-16 11:17:55 -0500 | [diff] [blame] | 755 | |
| 756 | # The mask bits for tenant ipv6 subnets (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 757 | #tenant_network_v6_mask_bits = 64 |
Henry Gessau | ffda37a | 2014-01-16 11:17:55 -0500 | [diff] [blame] | 758 | |
Joseph Lanoux | 2f81cc1 | 2015-01-12 16:01:20 +0000 | [diff] [blame] | 759 | # Whether tenant networks can be reached directly from the test |
| 760 | # client. This must be set to True when the 'fixed' ssh_connect_method |
| 761 | # is selected. (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 762 | #tenant_networks_reachable = false |
Attila Fazekas | 640392b | 2014-06-12 15:58:10 +0200 | [diff] [blame] | 763 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 764 | # Id of the public network that provides external connectivity (string |
| 765 | # value) |
| 766 | #public_network_id = |
| 767 | |
Joseph Lanoux | 2f81cc1 | 2015-01-12 16:01:20 +0000 | [diff] [blame] | 768 | # Default floating network name. Used to allocate floating IPs when |
| 769 | # neutron is enabled. (string value) |
| 770 | #floating_network_name = <None> |
| 771 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 772 | # Id of the public router that provides external connectivity. This |
| 773 | # should only be used when Neutron's 'allow_overlapping_ips' is set to |
| 774 | # 'False' in neutron.conf. usually not needed past 'Grizzly' release |
| 775 | # (string value) |
| 776 | #public_router_id = |
| 777 | |
| 778 | # Timeout in seconds to wait for network operation to complete. |
| 779 | # (integer value) |
| 780 | #build_timeout = 300 |
| 781 | |
| 782 | # Time in seconds between network operation status checks. (integer |
| 783 | # value) |
| 784 | #build_interval = 1 |
| 785 | |
| 786 | # List of dns servers which should be used for subnet creation (list |
| 787 | # value) |
| 788 | #dns_servers = 8.8.8.8,8.8.4.4 |
| 789 | |
Itzik Brown | 2ca01cd | 2014-12-08 12:58:20 +0200 | [diff] [blame] | 790 | # vnic_type to use when Launching instances with pre-configured ports. |
| 791 | # Supported ports are: ['normal','direct','macvtap'] (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 792 | # Allowed values: <None>, normal, direct, macvtap |
Itzik Brown | 2ca01cd | 2014-12-08 12:58:20 +0200 | [diff] [blame] | 793 | #port_vnic_type = <None> |
| 794 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 795 | |
| 796 | [network-feature-enabled] |
| 797 | |
| 798 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 799 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 800 | # |
| 801 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 802 | # Allow the execution of IPv6 tests (boolean value) |
| 803 | #ipv6 = true |
| 804 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 805 | # A list of enabled network extensions with a special entry all which |
| 806 | # indicates every extension is enabled. Empty list indicates all |
Alexander Gubanov | 36e1f9b | 2015-06-12 18:02:10 +0300 | [diff] [blame] | 807 | # extensions are disabled. To get the list of extensions run: 'neutron |
| 808 | # ext-list' (list value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 809 | #api_extensions = all |
| 810 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 811 | # Allow the execution of IPv6 subnet tests that use the extended IPv6 |
| 812 | # attributes ipv6_ra_mode and ipv6_address_mode (boolean value) |
| 813 | #ipv6_subnet_attributes = false |
Sean M. Collins | dd27a4d | 2014-05-13 10:33:15 -0400 | [diff] [blame] | 814 | |
Itzik Brown | beb30d3 | 2015-03-29 09:42:54 +0300 | [diff] [blame] | 815 | # Does the test environment support changing port admin state (boolean |
| 816 | # value) |
| 817 | #port_admin_state_change = true |
| 818 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 819 | |
| 820 | [object-storage] |
| 821 | |
| 822 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 823 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 824 | # |
| 825 | |
| 826 | # Catalog type of the Object-Storage service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 827 | #catalog_type = object-store |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 828 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 829 | # The object-storage region name to use. If empty, the value of |
| 830 | # identity.region is used instead. If no such region is found in the |
| 831 | # service catalog, the first found one is used. (string value) |
| 832 | #region = |
JordanP | 5d29b2c | 2013-12-18 13:56:03 +0000 | [diff] [blame] | 833 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 834 | # The endpoint type to use for the object-store service. (string |
| 835 | # value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 836 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 837 | #endpoint_type = publicURL |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 838 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 839 | # Number of seconds to time on waiting for a container to container |
| 840 | # synchronization complete. (integer value) |
Daisuke Morita | 1ac3ee0 | 2014-08-25 12:59:18 +0900 | [diff] [blame] | 841 | #container_sync_timeout = 600 |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 842 | |
| 843 | # Number of seconds to wait while looping to check the status of a |
| 844 | # container to container synchronization (integer value) |
| 845 | #container_sync_interval = 5 |
| 846 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 847 | # Role to add to users created for swift tests to enable creating |
| 848 | # containers (string value) |
| 849 | #operator_role = Member |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 850 | |
Matthew Treinish | 998c91d | 2014-03-01 12:39:49 -0500 | [diff] [blame] | 851 | # User role that has reseller admin (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 852 | #reseller_admin_role = ResellerAdmin |
Matthew Treinish | 998c91d | 2014-03-01 12:39:49 -0500 | [diff] [blame] | 853 | |
Daisuke Morita | 1ac3ee0 | 2014-08-25 12:59:18 +0900 | [diff] [blame] | 854 | # Name of sync realm. A sync realm is a set of clusters that have |
| 855 | # agreed to allow container syncing with each other. Set the same |
| 856 | # realm name as Swift's container-sync-realms.conf (string value) |
| 857 | #realm_name = realm1 |
| 858 | |
| 859 | # One name of cluster which is set in the realm whose name is set in |
| 860 | # 'realm_name' item in this file. Set the same cluster name as Swift's |
| 861 | # container-sync-realms.conf (string value) |
| 862 | #cluster_name = name1 |
| 863 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 864 | |
| 865 | [object-storage-feature-enabled] |
| 866 | |
| 867 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 868 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 869 | # |
| 870 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 871 | # A list of the enabled optional discoverable apis. A single entry, |
| 872 | # all, indicates that all of these features are expected to be enabled |
| 873 | # (list value) |
| 874 | #discoverable_apis = all |
| 875 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 876 | # Execute (old style) container-sync tests (boolean value) |
| 877 | #container_sync = true |
| 878 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 879 | # Execute object-versioning tests (boolean value) |
| 880 | #object_versioning = true |
Daisuke Morita | 20a183f | 2014-08-25 14:43:36 +0900 | [diff] [blame] | 881 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 882 | # Execute discoverability tests (boolean value) |
| 883 | #discoverability = true |
| 884 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 885 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 886 | [orchestration] |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 887 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 888 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 889 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 890 | # |
Attila Fazekas | 8695073 | 2013-06-08 09:33:08 +0200 | [diff] [blame] | 891 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 892 | # Catalog type of the Orchestration service. (string value) |
| 893 | #catalog_type = orchestration |
| 894 | |
| 895 | # The orchestration region name to use. If empty, the value of |
| 896 | # identity.region is used instead. If no such region is found in the |
| 897 | # service catalog, the first found one is used. (string value) |
| 898 | #region = |
| 899 | |
| 900 | # The endpoint type to use for the orchestration service. (string |
| 901 | # value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 902 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 903 | #endpoint_type = publicURL |
| 904 | |
Matthew Treinish | db9721d | 2015-03-18 14:21:28 -0400 | [diff] [blame] | 905 | # Role required for users to be able to manage stacks (string value) |
| 906 | #stack_owner_role = heat_stack_owner |
| 907 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 908 | # Time in seconds between build status checks. (integer value) |
| 909 | #build_interval = 1 |
| 910 | |
| 911 | # Timeout in seconds to wait for a stack to build. (integer value) |
| 912 | #build_timeout = 1200 |
| 913 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 914 | # Instance type for tests. Needs to be big enough for a full OS plus |
| 915 | # the test workload (string value) |
| 916 | #instance_type = m1.micro |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 917 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 918 | # Name of existing keypair to launch servers with. (string value) |
| 919 | #keypair_name = <None> |
| 920 | |
| 921 | # Value must match heat configuration of the same name. (integer |
| 922 | # value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 923 | #max_template_size = 524288 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 924 | |
| 925 | # Value must match heat configuration of the same name. (integer |
| 926 | # value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 927 | #max_resources_per_stack = 1000 |
Steven Hardy | fdc6bd7 | 2014-03-21 16:56:04 +0000 | [diff] [blame] | 928 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 929 | |
Doug Hellmann | 583ce2c | 2015-03-11 14:55:46 +0000 | [diff] [blame] | 930 | [oslo_concurrency] |
| 931 | |
| 932 | # |
| 933 | # From oslo.concurrency |
| 934 | # |
| 935 | |
| 936 | # Enables or disables inter-process locks. (boolean value) |
| 937 | # Deprecated group/name - [DEFAULT]/disable_process_locking |
| 938 | #disable_process_locking = false |
| 939 | |
| 940 | # Directory to use for lock files. For security, the specified |
| 941 | # directory should only be writable by the user running the processes |
| 942 | # that need locking. Defaults to environment variable OSLO_LOCK_PATH. |
| 943 | # If external locks are used, a lock path must be set. (string value) |
| 944 | # Deprecated group/name - [DEFAULT]/lock_path |
| 945 | #lock_path = <None> |
| 946 | |
| 947 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 948 | [scenario] |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 949 | |
| 950 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 951 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 952 | # |
| 953 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 954 | # Directory containing image files (string value) |
| 955 | #img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec |
| 956 | |
| 957 | # Image file name (string value) |
| 958 | # Deprecated group/name - [DEFAULT]/qcow2_img_file |
| 959 | #img_file = cirros-0.3.1-x86_64-disk.img |
| 960 | |
| 961 | # Image disk format (string value) |
| 962 | #img_disk_format = qcow2 |
| 963 | |
| 964 | # Image container format (string value) |
| 965 | #img_container_format = bare |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 966 | |
Evgeny Antyshev | 7ba0d5f | 2015-04-28 13:18:07 +0000 | [diff] [blame] | 967 | # Glance image properties. Use for custom images which require them |
| 968 | # (dict value) |
| 969 | #img_properties = <None> |
| 970 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 971 | # AMI image file name (string value) |
| 972 | #ami_img_file = cirros-0.3.1-x86_64-blank.img |
| 973 | |
| 974 | # ARI image file name (string value) |
| 975 | #ari_img_file = cirros-0.3.1-x86_64-initrd |
| 976 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 977 | # AKI image file name (string value) |
| 978 | #aki_img_file = cirros-0.3.1-x86_64-vmlinuz |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 979 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 980 | # ssh username for the image file (string value) |
| 981 | #ssh_user = cirros |
Alessandro Pilotti | b7c1daa | 2014-08-16 14:24:13 +0300 | [diff] [blame] | 982 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 983 | # specifies how many resources to request at once. Used for large |
| 984 | # operations testing. (integer value) |
| 985 | #large_ops_number = 0 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 986 | |
Yair Fried | 413bf2d | 2014-11-19 17:07:11 +0200 | [diff] [blame] | 987 | # DHCP client used by images to renew DCHP lease. If left empty, |
| 988 | # update operation will be skipped. Supported clients: "udhcpc", |
| 989 | # "dhclient" (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 990 | # Allowed values: udhcpc, dhclient |
Yair Fried | 413bf2d | 2014-11-19 17:07:11 +0200 | [diff] [blame] | 991 | #dhcp_client = udhcpc |
| 992 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 993 | |
| 994 | [service_available] |
| 995 | |
| 996 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 997 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 998 | # |
| 999 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1000 | # Whether or not cinder is expected to be available (boolean value) |
| 1001 | #cinder = true |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 1002 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1003 | # Whether or not neutron is expected to be available (boolean value) |
| 1004 | #neutron = false |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 1005 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1006 | # Whether or not glance is expected to be available (boolean value) |
| 1007 | #glance = true |
| 1008 | |
| 1009 | # Whether or not swift is expected to be available (boolean value) |
| 1010 | #swift = true |
| 1011 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1012 | # Whether or not nova is expected to be available (boolean value) |
| 1013 | #nova = true |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 1014 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1015 | # Whether or not Heat is expected to be available (boolean value) |
| 1016 | #heat = false |
| 1017 | |
| 1018 | # Whether or not Ceilometer is expected to be available (boolean |
| 1019 | # value) |
| 1020 | #ceilometer = true |
| 1021 | |
| 1022 | # Whether or not Horizon is expected to be available (boolean value) |
| 1023 | #horizon = true |
| 1024 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1025 | # Whether or not Sahara is expected to be available (boolean value) |
| 1026 | #sahara = false |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 1027 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1028 | # Whether or not Ironic is expected to be available (boolean value) |
| 1029 | #ironic = false |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 1030 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1031 | # Whether or not Trove is expected to be available (boolean value) |
| 1032 | #trove = false |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 1033 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1034 | # Whether or not Zaqar is expected to be available (boolean value) |
| 1035 | #zaqar = false |
Malini Kamalambal | 6e7b3b8 | 2014-02-06 06:49:04 -0500 | [diff] [blame] | 1036 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 1037 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1038 | [stress] |
| 1039 | |
| 1040 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1041 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1042 | # |
| 1043 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1044 | # Directory containing log files on the compute nodes (string value) |
| 1045 | #nova_logdir = <None> |
| 1046 | |
| 1047 | # Maximum number of instances to create during test. (integer value) |
| 1048 | #max_instances = 16 |
| 1049 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1050 | # Controller host. (string value) |
| 1051 | #controller = <None> |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1052 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1053 | # Controller host. (string value) |
| 1054 | #target_controller = <None> |
| 1055 | |
| 1056 | # ssh user. (string value) |
| 1057 | #target_ssh_user = <None> |
| 1058 | |
| 1059 | # Path to private key. (string value) |
| 1060 | #target_private_key_path = <None> |
| 1061 | |
| 1062 | # regexp for list of log files. (string value) |
| 1063 | #target_logfiles = <None> |
| 1064 | |
| 1065 | # time (in seconds) between log file error checks. (integer value) |
| 1066 | #log_check_interval = 60 |
| 1067 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1068 | # The number of threads created while stress test. (integer value) |
| 1069 | #default_thread_number_per_action = 4 |
| 1070 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1071 | # Prevent the cleaning (tearDownClass()) between each stress test run |
| 1072 | # if an exception occurs during this run. (boolean value) |
| 1073 | #leave_dirty_stack = false |
| 1074 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1075 | # Allows a full cleaning process after a stress test. Caution : this |
| 1076 | # cleanup will remove every objects of every tenant. (boolean value) |
| 1077 | #full_clean_stack = false |
Julien Leloup | a5ee542 | 2014-02-13 14:29:02 +0100 | [diff] [blame] | 1078 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1079 | |
| 1080 | [telemetry] |
| 1081 | |
| 1082 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1083 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1084 | # |
| 1085 | |
| 1086 | # Catalog type of the Telemetry service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1087 | #catalog_type = metering |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1088 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1089 | # The endpoint type to use for the telemetry service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 1090 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1091 | #endpoint_type = publicURL |
| 1092 | |
| 1093 | # This variable is used as flag to enable notification tests (boolean |
JordanP | fc62c90 | 2014-02-26 14:47:28 +0000 | [diff] [blame] | 1094 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1095 | #too_slow_to_test = true |
Vadim Rovachev | 7bcea35 | 2013-12-26 15:56:17 +0400 | [diff] [blame] | 1096 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1097 | |
Joseph Lanoux | 2f81cc1 | 2015-01-12 16:01:20 +0000 | [diff] [blame] | 1098 | [validation] |
| 1099 | |
| 1100 | # |
| 1101 | # From tempest.config |
| 1102 | # |
| 1103 | |
Matthew Treinish | e5cca00 | 2015-05-11 15:36:50 -0400 | [diff] [blame] | 1104 | # Enable ssh on created servers and creation of additional validation |
| 1105 | # resources to enable remote access (boolean value) |
| 1106 | # Deprecated group/name - [compute]/run_ssh |
| 1107 | #run_validation = false |
| 1108 | |
Joseph Lanoux | 2f81cc1 | 2015-01-12 16:01:20 +0000 | [diff] [blame] | 1109 | # Default IP type used for validation: -fixed: uses the first IP |
| 1110 | # belonging to the fixed network -floating: creates and uses a |
| 1111 | # floating IP (string value) |
| 1112 | # Allowed values: fixed, floating |
| 1113 | #connect_method = floating |
| 1114 | |
| 1115 | # Default authentication method to the instance. Only ssh via keypair |
| 1116 | # is supported for now. Additional methods will be handled in a |
| 1117 | # separate spec. (string value) |
| 1118 | # Allowed values: keypair |
| 1119 | #auth_method = keypair |
| 1120 | |
| 1121 | # Default IP version for ssh connections. (integer value) |
| 1122 | #ip_version_for_ssh = 4 |
| 1123 | |
| 1124 | # Timeout in seconds to wait for ping to succeed. (integer value) |
| 1125 | #ping_timeout = 120 |
| 1126 | |
| 1127 | # Timeout in seconds to wait for the TCP connection to be successful. |
| 1128 | # (integer value) |
| 1129 | #connect_timeout = 60 |
| 1130 | |
| 1131 | # Timeout in seconds to wait for the ssh banner. (integer value) |
| 1132 | #ssh_timeout = 300 |
| 1133 | |
| 1134 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1135 | [volume] |
| 1136 | |
| 1137 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1138 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1139 | # |
| 1140 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1141 | # Time in seconds between volume availability checks. (integer value) |
| 1142 | #build_interval = 1 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1143 | |
Eric Harney | 9b1f89c | 2014-10-14 14:40:19 -0400 | [diff] [blame] | 1144 | # Timeout in seconds to wait for a volume to become available. |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1145 | # (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1146 | #build_timeout = 300 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1147 | |
| 1148 | # Catalog type of the Volume Service (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1149 | #catalog_type = volume |
| 1150 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1151 | # The volume region name to use. If empty, the value of |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1152 | # identity.region is used instead. If no such region is found in the |
| 1153 | # service catalog, the first found one is used. (string value) |
| 1154 | #region = |
| 1155 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1156 | # The endpoint type to use for the volume service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 1157 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1158 | #endpoint_type = publicURL |
| 1159 | |
| 1160 | # Name of the backend1 (must be declared in cinder.conf) (string |
| 1161 | # value) |
| 1162 | #backend1_name = BACKEND_1 |
| 1163 | |
| 1164 | # Name of the backend2 (must be declared in cinder.conf) (string |
| 1165 | # value) |
| 1166 | #backend2_name = BACKEND_2 |
| 1167 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1168 | # Backend protocol to target when creating volume types (string value) |
| 1169 | #storage_protocol = iSCSI |
| 1170 | |
| 1171 | # Backend vendor to target when creating volume types (string value) |
| 1172 | #vendor_name = Open Source |
| 1173 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1174 | # Disk format to use when copying a volume to image (string value) |
| 1175 | #disk_format = raw |
| 1176 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1177 | # Default size in GB for volumes created by volumes tests (integer |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1178 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1179 | #volume_size = 1 |
Jerry Cai | 9733d0e | 2014-03-19 15:50:49 +0800 | [diff] [blame] | 1180 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1181 | |
| 1182 | [volume-feature-enabled] |
| 1183 | |
| 1184 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1185 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1186 | # |
| 1187 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1188 | # Runs Cinder multi-backend test (requires 2 backends) (boolean value) |
| 1189 | #multi_backend = false |
| 1190 | |
| 1191 | # Runs Cinder volumes backup test (boolean value) |
| 1192 | #backup = true |
| 1193 | |
| 1194 | # Runs Cinder volume snapshot test (boolean value) |
| 1195 | #snapshot = true |
| 1196 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1197 | # A list of enabled volume extensions with a special entry all which |
| 1198 | # indicates every extension is enabled. Empty list indicates all |
| 1199 | # extensions are disabled (list value) |
| 1200 | #api_extensions = all |
Zhi Kun Liu | de25c02 | 2014-02-14 13:25:19 +0800 | [diff] [blame] | 1201 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1202 | # Is the v1 volume API enabled (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1203 | #api_v1 = true |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1204 | |
Zhi Kun Liu | 8cc3c84 | 2014-01-07 10:44:34 +0800 | [diff] [blame] | 1205 | # Is the v2 volume API enabled (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1206 | #api_v2 = true |
bkopilov | 8a657ae | 2015-05-11 11:45:23 +0300 | [diff] [blame] | 1207 | |
| 1208 | # Update bootable status of a volume Not implemented on icehouse |
| 1209 | # (boolean value) |
| 1210 | #bootable = false |