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 | |
| 42 | # Use syslog for logging. Existing syslog format is DEPRECATED during |
| 43 | # I, and will change in J to honor RFC5424. (boolean value) |
| 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 |
| 48 | # (RFC5424). The format without the APP-NAME is deprecated in I, and |
| 49 | # will be removed in J. (boolean value) |
| 50 | #use_syslog_rfc_format = false |
| 51 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 52 | # Syslog facility to receive log lines. (string value) |
| 53 | #syslog_log_facility = LOG_USER |
| 54 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 55 | # Log output to standard error. (boolean value) |
| 56 | #use_stderr = true |
| 57 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 58 | # Format string to use for log messages with context. (string value) |
| 59 | #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s |
| 60 | |
| 61 | # Format string to use for log messages without context. (string |
| 62 | # value) |
| 63 | #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s |
| 64 | |
| 65 | # Data to append to log format when level is DEBUG. (string value) |
| 66 | #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d |
| 67 | |
| 68 | # Prefix each line of exception output with this format. (string |
| 69 | # value) |
| 70 | #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s |
| 71 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 72 | # List of logger=LEVEL pairs. (list value) |
Doug Hellmann | 583ce2c | 2015-03-11 14:55:46 +0000 | [diff] [blame] | 73 | #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] | 74 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 75 | # Enables or disables publication of error events. (boolean value) |
| 76 | #publish_errors = false |
| 77 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 78 | # Enables or disables fatal status of deprecations. (boolean value) |
| 79 | #fatal_deprecations = false |
| 80 | |
| 81 | # The format for an instance that is passed with the log message. |
| 82 | # (string value) |
| 83 | #instance_format = "[instance: %(uuid)s] " |
| 84 | |
| 85 | # The format for an instance UUID that is passed with the log message. |
| 86 | # (string value) |
| 87 | #instance_uuid_format = "[instance: %(uuid)s] " |
| 88 | |
Marc Koderer | b714de5 | 2013-08-08 09:21:46 +0200 | [diff] [blame] | 89 | |
Matthew Treinish | c791ac4 | 2014-07-16 09:15:23 -0400 | [diff] [blame] | 90 | [auth] |
| 91 | |
| 92 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 93 | # From tempest.config |
Matthew Treinish | c791ac4 | 2014-07-16 09:15:23 -0400 | [diff] [blame] | 94 | # |
| 95 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 96 | # 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] | 97 | # for running tests. If used when running in parallel you have to make |
| 98 | # sure sufficient credentials are provided in the accounts file. For |
| 99 | # example if no tests with roles are being run it requires at least `2 |
| 100 | # * CONC` distinct accounts configured in the `test_accounts_file`, |
| 101 | # with CONC == the number of concurrent test processes. (string value) |
| 102 | #test_accounts_file = <None> |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 103 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 104 | # Allows test cases to create/destroy tenants and users. This option |
| 105 | # requires that OpenStack Identity API admin credentials are known. If |
| 106 | # false, isolated test cases and parallel execution, can still be |
| 107 | # achieved configuring a list of test accounts (boolean value) |
Andrea Frittoli | 8283b4e | 2014-07-17 13:28:58 +0100 | [diff] [blame] | 108 | # Deprecated group/name - [compute]/allow_tenant_isolation |
| 109 | # Deprecated group/name - [orchestration]/allow_tenant_isolation |
Attila Fazekas | 5dda158 | 2015-02-18 17:16:02 +0100 | [diff] [blame] | 110 | #allow_tenant_isolation = true |
Andrea Frittoli | 8283b4e | 2014-07-17 13:28:58 +0100 | [diff] [blame] | 111 | |
Matthew Treinish | 167b2be | 2015-01-15 17:20:27 -0500 | [diff] [blame] | 112 | # Roles to assign to all users created by tempest (list value) |
| 113 | #tempest_roles = |
| 114 | |
Andrea Frittoli | c328015 | 2015-02-26 12:42:34 +0000 | [diff] [blame] | 115 | # Only applicable when identity.auth_version is v3.Domain within which |
| 116 | # isolated credentials are provisioned.The default "None" means that |
| 117 | # the domain from theadmin user is used instead. (string value) |
| 118 | #tenant_isolation_domain_name = <None> |
| 119 | |
Matthew Treinish | c791ac4 | 2014-07-16 09:15:23 -0400 | [diff] [blame] | 120 | |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 121 | [baremetal] |
| 122 | |
| 123 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 124 | # From tempest.config |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 125 | # |
| 126 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 127 | # Catalog type of the baremetal provisioning service (string value) |
| 128 | #catalog_type = baremetal |
| 129 | |
| 130 | # Whether the Ironic nova-compute driver is enabled (boolean value) |
| 131 | #driver_enabled = false |
| 132 | |
| 133 | # Driver name which Ironic uses (string value) |
| 134 | #driver = fake |
| 135 | |
| 136 | # The endpoint type to use for the baremetal provisioning service |
| 137 | # (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 138 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 139 | #endpoint_type = publicURL |
| 140 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 141 | # Timeout for Ironic node to completely provision (integer value) |
| 142 | #active_timeout = 300 |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 143 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 144 | # Timeout for association of Nova instance and Ironic node (integer |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 145 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 146 | #association_timeout = 30 |
| 147 | |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 148 | # Timeout for Ironic power transitions. (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 149 | #power_timeout = 60 |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 150 | |
| 151 | # Timeout for unprovisioning an Ironic node. (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 152 | #unprovision_timeout = 60 |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 153 | |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 154 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 155 | [boto] |
Sergey Lukjanov | cec6c3f | 2013-12-10 12:38:21 +0400 | [diff] [blame] | 156 | |
| 157 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 158 | # From tempest.config |
Sergey Lukjanov | cec6c3f | 2013-12-10 12:38:21 +0400 | [diff] [blame] | 159 | # |
| 160 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 161 | # EC2 URL (string value) |
| 162 | #ec2_url = http://localhost:8773/services/Cloud |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 163 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 164 | # S3 URL (string value) |
| 165 | #s3_url = http://localhost:8080 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 166 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 167 | # AWS Secret Key (string value) |
| 168 | #aws_secret = <None> |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 169 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 170 | # AWS Access Key (string value) |
| 171 | #aws_access = <None> |
| 172 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 173 | # AWS Zone for EC2 tests (string value) |
| 174 | #aws_zone = nova |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 175 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 176 | # S3 Materials Path (string value) |
| 177 | #s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.0 |
| 178 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 179 | # ARI Ramdisk Image manifest (string value) |
| 180 | #ari_manifest = cirros-0.3.0-x86_64-initrd.manifest.xml |
| 181 | |
| 182 | # AMI Machine Image manifest (string value) |
| 183 | #ami_manifest = cirros-0.3.0-x86_64-blank.img.manifest.xml |
| 184 | |
| 185 | # AKI Kernel Image manifest (string value) |
| 186 | #aki_manifest = cirros-0.3.0-x86_64-vmlinuz.manifest.xml |
| 187 | |
| 188 | # Instance type (string value) |
| 189 | #instance_type = m1.tiny |
| 190 | |
| 191 | # boto Http socket timeout (integer value) |
| 192 | #http_socket_timeout = 3 |
| 193 | |
| 194 | # boto num_retries on error (integer value) |
| 195 | #num_retries = 1 |
| 196 | |
| 197 | # Status Change Timeout (integer value) |
| 198 | #build_timeout = 60 |
| 199 | |
| 200 | # Status Change Test Interval (integer value) |
| 201 | #build_interval = 1 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 202 | |
| 203 | |
| 204 | [cli] |
| 205 | |
| 206 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 207 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 208 | # |
| 209 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 210 | # enable cli tests (boolean value) |
| 211 | #enabled = true |
Sergey Lukjanov | cec6c3f | 2013-12-10 12:38:21 +0400 | [diff] [blame] | 212 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 213 | # directory where python client binaries are located (string value) |
| 214 | #cli_dir = /usr/local/bin |
| 215 | |
Sean Dague | 44b2468 | 2014-02-20 19:08:24 -0500 | [diff] [blame] | 216 | # Whether the tempest run location has access to the *-manage |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 217 | # commands. In a pure blackbox environment it will not. (boolean |
| 218 | # value) |
| 219 | #has_manage = true |
Sean Dague | 44b2468 | 2014-02-20 19:08:24 -0500 | [diff] [blame] | 220 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 221 | # Number of seconds to wait on a CLI timeout (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 222 | #timeout = 15 |
Arata Notsu | 8f44039 | 2013-09-13 16:14:20 +0900 | [diff] [blame] | 223 | |
Sean Dague | 8340199 | 2013-05-06 17:46:36 -0400 | [diff] [blame] | 224 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 225 | [compute] |
| 226 | |
| 227 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 228 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 229 | # |
| 230 | |
Matthew Treinish | afcb6b4 | 2014-05-27 13:50:02 -0400 | [diff] [blame] | 231 | # Valid primary image reference to be used in tests. This is a |
| 232 | # required option (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 233 | #image_ref = <None> |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 234 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 235 | # Valid secondary image reference to be used in tests. This is a |
| 236 | # required option, but if only one image is available duplicate the |
| 237 | # value of image_ref above (string value) |
| 238 | #image_ref_alt = <None> |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 239 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 240 | # Valid primary flavor to use in tests. (string value) |
| 241 | #flavor_ref = 1 |
| 242 | |
| 243 | # Valid secondary flavor to be used in tests. (string value) |
| 244 | #flavor_ref_alt = 2 |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 245 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 246 | # User name used to authenticate to an instance. (string value) |
| 247 | #image_ssh_user = root |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 248 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 249 | # Password used to authenticate to an instance. (string value) |
| 250 | #image_ssh_password = password |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 251 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 252 | # User name used to authenticate to an instance using the alternate |
| 253 | # image. (string value) |
| 254 | #image_alt_ssh_user = root |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 255 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 256 | # Password used to authenticate to an instance using the alternate |
| 257 | # image. (string value) |
| 258 | #image_alt_ssh_password = password |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 259 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 260 | # Time in seconds between build status checks. (integer value) |
| 261 | #build_interval = 1 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 262 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 263 | # Timeout in seconds to wait for an instance to build. Other services |
Lucian Petrut | 1cfe298 | 2015-01-06 13:57:36 +0200 | [diff] [blame] | 264 | # that do not define build_timeout will inherit this value. (integer |
| 265 | # value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 266 | #build_timeout = 300 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 267 | |
| 268 | # Should the tests ssh to instances? (boolean value) |
| 269 | #run_ssh = false |
| 270 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 271 | # Auth method used for authenticate to the instance. Valid choices |
| 272 | # are: keypair, configured, adminpass. keypair: start the servers with |
| 273 | # an ssh keypair. configured: use the configured user and password. |
| 274 | # adminpass: use the injected adminPass. disabled: avoid using ssh |
| 275 | # when it is an option. (string value) |
| 276 | #ssh_auth_method = keypair |
| 277 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 278 | # How to connect to the instance? fixed: using the first ip belongs |
| 279 | # the fixed network floating: creating and using a floating ip (string |
JordanP | 5d29b2c | 2013-12-18 13:56:03 +0000 | [diff] [blame] | 280 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 281 | #ssh_connect_method = fixed |
JordanP | 5d29b2c | 2013-12-18 13:56:03 +0000 | [diff] [blame] | 282 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 283 | # User name used to authenticate to an instance. (string value) |
| 284 | #ssh_user = root |
| 285 | |
| 286 | # Timeout in seconds to wait for ping to succeed. (integer value) |
| 287 | #ping_timeout = 120 |
| 288 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 289 | # Timeout in seconds to wait for authentication to succeed. (integer |
| 290 | # value) |
| 291 | #ssh_timeout = 300 |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 292 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 293 | # Additional wait time for clean state, when there is no OS-EXT-STS |
| 294 | # extension available (integer value) |
| 295 | #ready_wait = 0 |
| 296 | |
| 297 | # Timeout in seconds to wait for output from ssh channel. (integer |
| 298 | # value) |
| 299 | #ssh_channel_timeout = 60 |
| 300 | |
Matthew Treinish | 03feae0 | 2015-03-27 10:25:45 -0400 | [diff] [blame] | 301 | # Name of the fixed network that is visible to all test tenants. If |
| 302 | # multiple networks are available for a tenant this is the network |
| 303 | # which will be used for creating servers if tempest does not create a |
| 304 | # network or a network is not specified elsewhere (string value) |
| 305 | #fixed_network_name = <None> |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 306 | |
| 307 | # Network used for SSH connections. Ignored if |
| 308 | # use_floatingip_for_ssh=true or run_ssh=false. (string value) |
| 309 | #network_for_ssh = public |
| 310 | |
| 311 | # IP version used for SSH connections. (integer value) |
| 312 | #ip_version_for_ssh = 4 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 313 | |
| 314 | # Does SSH use Floating IPs? (boolean value) |
| 315 | #use_floatingip_for_ssh = true |
| 316 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 317 | # Catalog type of the Compute service. (string value) |
| 318 | #catalog_type = compute |
| 319 | |
| 320 | # The compute region name to use. If empty, the value of |
| 321 | # identity.region is used instead. If no such region is found in the |
| 322 | # service catalog, the first found one is used. (string value) |
| 323 | #region = |
| 324 | |
| 325 | # The endpoint type to use for the compute service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 326 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 327 | #endpoint_type = publicURL |
| 328 | |
| 329 | # Path to a private key file for SSH access to remote hosts (string |
| 330 | # value) |
| 331 | #path_to_private_key = <None> |
| 332 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 333 | # Expected device name when a volume is attached to an instance |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 334 | # (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 335 | #volume_device_name = vdb |
Sean Dague | 8219085 | 2014-05-24 07:42:59 -0400 | [diff] [blame] | 336 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 337 | # Time in seconds before a shelved instance is eligible for removing |
| 338 | # from a host. -1 never offload, 0 offload when shelved. This time |
| 339 | # should be the same as the time of nova.conf, and some tests will run |
| 340 | # for as long as the time. (integer value) |
| 341 | #shelved_offload_time = 0 |
| 342 | |
| 343 | # Unallocated floating IP range, which will be used to test the |
| 344 | # floating IP bulk feature for CRUD operation. This block must not |
| 345 | # overlap an existing floating IP pool. (string value) |
| 346 | #floating_ip_range = 10.0.0.0/29 |
| 347 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 348 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 349 | [compute-feature-enabled] |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 350 | |
| 351 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 352 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 353 | # |
| 354 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 355 | # If false, skip disk config tests (boolean value) |
| 356 | #disk_config = true |
| 357 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 358 | # A list of enabled compute extensions with a special entry all which |
| 359 | # indicates every extension is enabled. Each extension should be |
| 360 | # specified with alias name. Empty list indicates all extensions are |
| 361 | # disabled (list value) |
| 362 | #api_extensions = all |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 363 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 364 | # Does the test environment support changing the admin password? |
| 365 | # (boolean value) |
| 366 | #change_password = false |
| 367 | |
| 368 | # Does the test environment support obtaining instance serial console |
| 369 | # output? (boolean value) |
| 370 | #console_output = true |
Matthew Treinish | 20866a2 | 2014-06-12 14:58:36 -0400 | [diff] [blame] | 371 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 372 | # Does the test environment support resizing? (boolean value) |
| 373 | #resize = false |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 374 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 375 | # Does the test environment support pausing? (boolean value) |
| 376 | #pause = true |
Ghanshyam | 9c2e50d | 2014-07-22 21:32:05 +0900 | [diff] [blame] | 377 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 378 | # Does the test environment support shelving/unshelving? (boolean |
| 379 | # value) |
| 380 | #shelve = true |
| 381 | |
| 382 | # Does the test environment support suspend/resume? (boolean value) |
| 383 | #suspend = true |
Adam Gandelman | 7186f7a | 2014-07-23 09:28:56 -0400 | [diff] [blame] | 384 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 385 | # Does the test environment support live migration available? (boolean |
| 386 | # value) |
Joe Gordon | 31a139a | 2014-11-17 16:39:04 -0800 | [diff] [blame] | 387 | #live_migration = true |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 388 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 389 | # Does the test environment use block devices for live migration |
| 390 | # (boolean value) |
| 391 | #block_migration_for_live_migration = false |
| 392 | |
| 393 | # Does the test environment block migration support cinder iSCSI |
Joe Gordon | 0a5788f | 2015-03-17 11:29:38 -0700 | [diff] [blame] | 394 | # volumes. Note, libvirt doesn't support this, see |
| 395 | # https://bugs.launchpad.net/nova/+bug/1398999 (boolean value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 396 | #block_migrate_cinder_iscsi = false |
| 397 | |
| 398 | # Enable VNC console. This configuration value should be same as |
| 399 | # [nova.vnc]->vnc_enabled in nova.conf (boolean value) |
| 400 | #vnc_console = false |
| 401 | |
| 402 | # Enable Spice console. This configuration value should be same as |
| 403 | # [nova.spice]->enabled in nova.conf (boolean value) |
| 404 | #spice_console = false |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 405 | |
| 406 | # Enable RDP console. This configuration value should be same as |
| 407 | # [nova.rdp]->enabled in nova.conf (boolean value) |
| 408 | #rdp_console = false |
| 409 | |
| 410 | # Does the test environment support instance rescue mode? (boolean |
| 411 | # value) |
| 412 | #rescue = true |
| 413 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 414 | # Enables returning of the instance password by the relevant server |
| 415 | # API calls such as create, rebuild or rescue. (boolean value) |
| 416 | #enable_instance_password = true |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 417 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 418 | # Does the test environment support dynamic network interface |
| 419 | # attachment? (boolean value) |
| 420 | #interface_attach = true |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 421 | |
| 422 | # Does the test environment support creating snapshot images of |
| 423 | # running instances? (boolean value) |
| 424 | #snapshot = true |
| 425 | |
Matthew Treinish | dfd7ac0 | 2015-02-09 17:47:31 -0500 | [diff] [blame] | 426 | # Does the test environment have the ec2 api running? (boolean value) |
| 427 | #ec2_api = true |
| 428 | |
Matt Riedemann | 1794073 | 2015-03-13 14:18:19 +0000 | [diff] [blame] | 429 | # Does Nova preserve preexisting ports from Neutron when deleting an |
| 430 | # instance? This should be set to True if testing Kilo+ Nova. (boolean |
| 431 | # value) |
| 432 | #preserve_ports = false |
| 433 | |
Yassine Lamgarchal | b158d41 | 2013-12-27 19:29:42 +0100 | [diff] [blame] | 434 | |
Julie Pichon | d101764 | 2013-07-24 16:37:23 +0100 | [diff] [blame] | 435 | [dashboard] |
Julie Pichon | d101764 | 2013-07-24 16:37:23 +0100 | [diff] [blame] | 436 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 437 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 438 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 439 | # |
Julie Pichon | d101764 | 2013-07-24 16:37:23 +0100 | [diff] [blame] | 440 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 441 | # Where the dashboard can be found (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 442 | #dashboard_url = http://localhost/ |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 443 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 444 | # Login page for the dashboard (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 445 | #login_url = http://localhost/auth/login/ |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 446 | |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 447 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 448 | [data_processing] |
| 449 | |
| 450 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 451 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 452 | # |
| 453 | |
| 454 | # Catalog type of the data processing service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 455 | #catalog_type = data_processing |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 456 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 457 | # The endpoint type to use for the data processing service. (string |
| 458 | # value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 459 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 460 | #endpoint_type = publicURL |
JordanP | fc62c90 | 2014-02-26 14:47:28 +0000 | [diff] [blame] | 461 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 462 | |
Luigi Toscano | 14d172d | 2015-01-23 16:37:47 +0100 | [diff] [blame] | 463 | [data_processing-feature-enabled] |
| 464 | |
| 465 | # |
| 466 | # From tempest.config |
| 467 | # |
| 468 | |
| 469 | # List of enabled data processing plugins (list value) |
| 470 | #plugins = vanilla,hdp |
| 471 | |
| 472 | |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 473 | [database] |
| 474 | |
| 475 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 476 | # From tempest.config |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 477 | # |
| 478 | |
| 479 | # Catalog type of the Database service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 480 | #catalog_type = database |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 481 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 482 | # Valid primary flavor to use in database tests. (string value) |
| 483 | #db_flavor_ref = 1 |
Peter Stachowski | 320f9c7 | 2014-04-21 16:13:23 -0400 | [diff] [blame] | 484 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 485 | # Current database version to use in database tests. (string value) |
| 486 | #db_current_version = v1.0 |
| 487 | |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 488 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 489 | [debug] |
| 490 | |
| 491 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 492 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 493 | # |
| 494 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 495 | # A regex to determine which requests should be traced. This is a |
| 496 | # regex to match the caller for rest client requests to be able to |
| 497 | # selectively trace calls out of specific classes and methods. It |
| 498 | # largely exists for test development, and is not expected to be used |
| 499 | # in a real deploy of tempest. This will be matched against the |
| 500 | # discovered ClassName:method in the test environment. Expected |
| 501 | # values for this field are: * ClassName:test_method_name - traces |
| 502 | # one test_method * ClassName:setUp(Class) - traces specific setup |
| 503 | # functions * ClassName:tearDown(Class) - traces specific teardown |
| 504 | # functions * ClassName:_run_cleanups - traces the cleanup functions |
| 505 | # If nothing is specified, this feature is not enabled. To trace |
| 506 | # everything specify .* as the regex. (string value) |
| 507 | #trace_requests = |
Sean Dague | c522c09 | 2014-03-24 10:43:22 -0400 | [diff] [blame] | 508 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 509 | |
| 510 | [identity] |
| 511 | |
| 512 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 513 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 514 | # |
| 515 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 516 | # Catalog type of the Identity service. (string value) |
| 517 | #catalog_type = identity |
| 518 | |
| 519 | # Set to True if using self-signed SSL certificates. (boolean value) |
| 520 | #disable_ssl_certificate_validation = false |
| 521 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 522 | # Specify a CA bundle file to use in verifying a TLS (https) server |
| 523 | # certificate. (string value) |
| 524 | #ca_certificates_file = <None> |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 525 | |
| 526 | # Full URI of the OpenStack Identity API (Keystone), v2 (string value) |
| 527 | #uri = <None> |
| 528 | |
| 529 | # Full URI of the OpenStack Identity API (Keystone), v3 (string value) |
| 530 | #uri_v3 = <None> |
| 531 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 532 | # Identity API version to be used for authentication for API tests. |
| 533 | # (string value) |
| 534 | #auth_version = v2 |
| 535 | |
| 536 | # The identity region name to use. Also used as the other services' |
| 537 | # region name unless they are set explicitly. If no such region is |
| 538 | # found in the service catalog, the first found one is used. (string |
| 539 | # value) |
| 540 | #region = RegionOne |
| 541 | |
| 542 | # The endpoint type to use for the identity service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 543 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 544 | #endpoint_type = publicURL |
| 545 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 546 | # Username to use for Nova API requests. (string value) |
| 547 | #username = <None> |
Andrea Frittoli | b1b04bb | 2014-04-06 11:57:07 +0100 | [diff] [blame] | 548 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 549 | # Tenant name to use for Nova API requests. (string value) |
| 550 | #tenant_name = <None> |
| 551 | |
| 552 | # Role required to administrate keystone. (string value) |
| 553 | #admin_role = admin |
| 554 | |
| 555 | # API key to use when authenticating. (string value) |
| 556 | #password = <None> |
| 557 | |
| 558 | # Domain name for authentication (Keystone V3).The same domain applies |
| 559 | # to user and project (string value) |
| 560 | #domain_name = <None> |
| 561 | |
| 562 | # Username of alternate user to use for Nova API requests. (string |
| 563 | # value) |
| 564 | #alt_username = <None> |
| 565 | |
| 566 | # Alternate user's Tenant name to use for Nova API requests. (string |
| 567 | # value) |
| 568 | #alt_tenant_name = <None> |
| 569 | |
| 570 | # API key to use when authenticating as alternate user. (string value) |
| 571 | #alt_password = <None> |
| 572 | |
| 573 | # Alternate domain name for authentication (Keystone V3).The same |
| 574 | # domain applies to user and project (string value) |
| 575 | #alt_domain_name = <None> |
| 576 | |
| 577 | # Administrative Username to use for Keystone API requests. (string |
| 578 | # value) |
| 579 | #admin_username = <None> |
| 580 | |
| 581 | # Administrative Tenant name to use for Keystone API requests. (string |
| 582 | # value) |
| 583 | #admin_tenant_name = <None> |
| 584 | |
| 585 | # API key to use when authenticating as admin. (string value) |
| 586 | #admin_password = <None> |
| 587 | |
| 588 | # Admin domain name for authentication (Keystone V3).The same domain |
| 589 | # applies to user and project (string value) |
| 590 | #admin_domain_name = <None> |
| 591 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 592 | |
Matthew Treinish | d5021a7 | 2014-01-09 18:42:51 +0000 | [diff] [blame] | 593 | [identity-feature-enabled] |
| 594 | |
| 595 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 596 | # From tempest.config |
Matthew Treinish | d5021a7 | 2014-01-09 18:42:51 +0000 | [diff] [blame] | 597 | # |
| 598 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 599 | # Does the identity service have delegation and impersonation enabled |
| 600 | # (boolean value) |
| 601 | #trust = true |
| 602 | |
Matthew Treinish | db2c597 | 2014-01-31 22:18:59 +0000 | [diff] [blame] | 603 | # Is the v2 identity API enabled (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 604 | #api_v2 = true |
Matthew Treinish | db2c597 | 2014-01-31 22:18:59 +0000 | [diff] [blame] | 605 | |
| 606 | # Is the v3 identity API enabled (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 607 | #api_v3 = true |
| 608 | |
Matthew Treinish | d5021a7 | 2014-01-09 18:42:51 +0000 | [diff] [blame] | 609 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 610 | [image] |
| 611 | |
| 612 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 613 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 614 | # |
| 615 | |
| 616 | # Catalog type of the Image service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 617 | #catalog_type = image |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 618 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 619 | # The image region name to use. If empty, the value of identity.region |
| 620 | # is used instead. If no such region is found in the service catalog, |
| 621 | # the first found one is used. (string value) |
| 622 | #region = |
| 623 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 624 | # The endpoint type to use for the image service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 625 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 626 | #endpoint_type = publicURL |
JordanP | 5d29b2c | 2013-12-18 13:56:03 +0000 | [diff] [blame] | 627 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 628 | # http accessible image (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 629 | #http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz |
| 630 | |
Lucian Petrut | 1cfe298 | 2015-01-06 13:57:36 +0200 | [diff] [blame] | 631 | # Timeout in seconds to wait for an image to become available. |
| 632 | # (integer value) |
| 633 | #build_timeout = 300 |
| 634 | |
| 635 | # Time in seconds between image operation status checks. (integer |
| 636 | # value) |
| 637 | #build_interval = 1 |
| 638 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 639 | |
| 640 | [image-feature-enabled] |
| 641 | |
| 642 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 643 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 644 | # |
| 645 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 646 | # Is the v2 image API enabled (boolean value) |
| 647 | #api_v2 = true |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 648 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 649 | # Is the v1 image API enabled (boolean value) |
| 650 | #api_v1 = true |
| 651 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 652 | |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 653 | [input-scenario] |
| 654 | |
| 655 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 656 | # From tempest.config |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 657 | # |
| 658 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 659 | # Matching images become parameters for scenario tests (string value) |
| 660 | #image_regex = ^cirros-0.3.1-x86_64-uec$ |
| 661 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 662 | # Matching flavors become parameters for scenario tests (string value) |
| 663 | #flavor_regex = ^m1.nano$ |
| 664 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 665 | # SSH verification in tests is skippedfor matching images (string |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 666 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 667 | #non_ssh_image_regex = ^.*[Ww]in.*$ |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 668 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 669 | # List of user mapped to regex to matching image names. (string value) |
Marc Koderer | 07f5a52 | 2015-03-27 15:02:41 +0100 | [diff] [blame] | 670 | #ssh_user_regex = [["^.*[Cc]irros.*$", "cirros"]] |
Andrea Frittoli | f5da28b | 2013-12-06 07:08:07 +0000 | [diff] [blame] | 671 | |
| 672 | |
Victoria MartÃnez de la Cruz | 1173b6e | 2014-09-22 18:32:13 -0300 | [diff] [blame] | 673 | [messaging] |
| 674 | |
| 675 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 676 | # From tempest.config |
Victoria MartÃnez de la Cruz | 1173b6e | 2014-09-22 18:32:13 -0300 | [diff] [blame] | 677 | # |
| 678 | |
| 679 | # Catalog type of the Messaging service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 680 | #catalog_type = messaging |
Victoria MartÃnez de la Cruz | 1173b6e | 2014-09-22 18:32:13 -0300 | [diff] [blame] | 681 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 682 | # The maximum number of queue records per page when listing queues |
| 683 | # (integer value) |
| 684 | #max_queues_per_page = 20 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 685 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 686 | # The maximum metadata size for a queue (integer value) |
| 687 | #max_queue_metadata = 65536 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 688 | |
| 689 | # The maximum number of queue message per page when listing (or) |
| 690 | # posting messages (integer value) |
| 691 | #max_messages_per_page = 20 |
| 692 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 693 | # The maximum size of a message body (integer value) |
| 694 | #max_message_size = 262144 |
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 number of messages per claim (integer value) |
| 697 | #max_messages_per_claim = 20 |
| 698 | |
| 699 | # The maximum ttl for a message (integer value) |
| 700 | #max_message_ttl = 1209600 |
| 701 | |
| 702 | # The maximum ttl for a claim (integer value) |
| 703 | #max_claim_ttl = 43200 |
| 704 | |
| 705 | # The maximum grace period for a claim (integer value) |
| 706 | #max_claim_grace = 43200 |
Victoria MartÃnez de la Cruz | 1173b6e | 2014-09-22 18:32:13 -0300 | [diff] [blame] | 707 | |
| 708 | |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 709 | [negative] |
| 710 | |
| 711 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 712 | # From tempest.config |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 713 | # |
| 714 | |
| 715 | # Test generator class for all negative tests (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 716 | #test_generator = tempest.common.generator.negative_generator.NegativeTestGenerator |
Marc Koderer | 6ee82dc | 2014-02-17 10:26:29 +0100 | [diff] [blame] | 717 | |
| 718 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 719 | [network] |
| 720 | |
| 721 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 722 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 723 | # |
| 724 | |
| 725 | # Catalog type of the Neutron service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 726 | #catalog_type = network |
| 727 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 728 | # The network region name to use. If empty, the value of |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 729 | # identity.region is used instead. If no such region is found in the |
| 730 | # service catalog, the first found one is used. (string value) |
| 731 | #region = |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 732 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 733 | # The endpoint type to use for the network service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 734 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 735 | #endpoint_type = publicURL |
| 736 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 737 | # The cidr block to allocate tenant ipv4 subnets from (string value) |
| 738 | #tenant_network_cidr = 10.100.0.0/16 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 739 | |
Henry Gessau | ffda37a | 2014-01-16 11:17:55 -0500 | [diff] [blame] | 740 | # The mask bits for tenant ipv4 subnets (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 741 | #tenant_network_mask_bits = 28 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 742 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 743 | # The cidr block to allocate tenant ipv6 subnets from (string value) |
| 744 | #tenant_network_v6_cidr = 2003::/48 |
Henry Gessau | ffda37a | 2014-01-16 11:17:55 -0500 | [diff] [blame] | 745 | |
| 746 | # The mask bits for tenant ipv6 subnets (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 747 | #tenant_network_v6_mask_bits = 64 |
Henry Gessau | ffda37a | 2014-01-16 11:17:55 -0500 | [diff] [blame] | 748 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 749 | # Whether tenant network connectivity should be evaluated directly |
| 750 | # (boolean value) |
| 751 | #tenant_networks_reachable = false |
Attila Fazekas | 640392b | 2014-06-12 15:58:10 +0200 | [diff] [blame] | 752 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 753 | # Id of the public network that provides external connectivity (string |
| 754 | # value) |
| 755 | #public_network_id = |
| 756 | |
| 757 | # Id of the public router that provides external connectivity. This |
| 758 | # should only be used when Neutron's 'allow_overlapping_ips' is set to |
| 759 | # 'False' in neutron.conf. usually not needed past 'Grizzly' release |
| 760 | # (string value) |
| 761 | #public_router_id = |
| 762 | |
| 763 | # Timeout in seconds to wait for network operation to complete. |
| 764 | # (integer value) |
| 765 | #build_timeout = 300 |
| 766 | |
| 767 | # Time in seconds between network operation status checks. (integer |
| 768 | # value) |
| 769 | #build_interval = 1 |
| 770 | |
| 771 | # List of dns servers which should be used for subnet creation (list |
| 772 | # value) |
| 773 | #dns_servers = 8.8.8.8,8.8.4.4 |
| 774 | |
Itzik Brown | 2ca01cd | 2014-12-08 12:58:20 +0200 | [diff] [blame] | 775 | # vnic_type to use when Launching instances with pre-configured ports. |
| 776 | # Supported ports are: ['normal','direct','macvtap'] (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 777 | # Allowed values: <None>, normal, direct, macvtap |
Itzik Brown | 2ca01cd | 2014-12-08 12:58:20 +0200 | [diff] [blame] | 778 | #port_vnic_type = <None> |
| 779 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 780 | |
| 781 | [network-feature-enabled] |
| 782 | |
| 783 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 784 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 785 | # |
| 786 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 787 | # Allow the execution of IPv6 tests (boolean value) |
| 788 | #ipv6 = true |
| 789 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 790 | # A list of enabled network extensions with a special entry all which |
| 791 | # indicates every extension is enabled. Empty list indicates all |
| 792 | # extensions are disabled (list value) |
| 793 | #api_extensions = all |
| 794 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 795 | # Allow the execution of IPv6 subnet tests that use the extended IPv6 |
| 796 | # attributes ipv6_ra_mode and ipv6_address_mode (boolean value) |
| 797 | #ipv6_subnet_attributes = false |
Sean M. Collins | dd27a4d | 2014-05-13 10:33:15 -0400 | [diff] [blame] | 798 | |
Itzik Brown | beb30d3 | 2015-03-29 09:42:54 +0300 | [diff] [blame^] | 799 | # Does the test environment support changing port admin state (boolean |
| 800 | # value) |
| 801 | #port_admin_state_change = true |
| 802 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 803 | |
| 804 | [object-storage] |
| 805 | |
| 806 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 807 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 808 | # |
| 809 | |
| 810 | # Catalog type of the Object-Storage service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 811 | #catalog_type = object-store |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 812 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 813 | # The object-storage region name to use. If empty, the value of |
| 814 | # identity.region is used instead. If no such region is found in the |
| 815 | # service catalog, the first found one is used. (string value) |
| 816 | #region = |
JordanP | 5d29b2c | 2013-12-18 13:56:03 +0000 | [diff] [blame] | 817 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 818 | # The endpoint type to use for the object-store service. (string |
| 819 | # value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 820 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 821 | #endpoint_type = publicURL |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 822 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 823 | # Number of seconds to time on waiting for a container to container |
| 824 | # synchronization complete. (integer value) |
Daisuke Morita | 1ac3ee0 | 2014-08-25 12:59:18 +0900 | [diff] [blame] | 825 | #container_sync_timeout = 600 |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 826 | |
| 827 | # Number of seconds to wait while looping to check the status of a |
| 828 | # container to container synchronization (integer value) |
| 829 | #container_sync_interval = 5 |
| 830 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 831 | # Role to add to users created for swift tests to enable creating |
| 832 | # containers (string value) |
| 833 | #operator_role = Member |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 834 | |
Matthew Treinish | 998c91d | 2014-03-01 12:39:49 -0500 | [diff] [blame] | 835 | # User role that has reseller admin (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 836 | #reseller_admin_role = ResellerAdmin |
Matthew Treinish | 998c91d | 2014-03-01 12:39:49 -0500 | [diff] [blame] | 837 | |
Daisuke Morita | 1ac3ee0 | 2014-08-25 12:59:18 +0900 | [diff] [blame] | 838 | # Name of sync realm. A sync realm is a set of clusters that have |
| 839 | # agreed to allow container syncing with each other. Set the same |
| 840 | # realm name as Swift's container-sync-realms.conf (string value) |
| 841 | #realm_name = realm1 |
| 842 | |
| 843 | # One name of cluster which is set in the realm whose name is set in |
| 844 | # 'realm_name' item in this file. Set the same cluster name as Swift's |
| 845 | # container-sync-realms.conf (string value) |
| 846 | #cluster_name = name1 |
| 847 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 848 | |
| 849 | [object-storage-feature-enabled] |
| 850 | |
| 851 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 852 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 853 | # |
| 854 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 855 | # A list of the enabled optional discoverable apis. A single entry, |
| 856 | # all, indicates that all of these features are expected to be enabled |
| 857 | # (list value) |
| 858 | #discoverable_apis = all |
| 859 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 860 | # Execute (old style) container-sync tests (boolean value) |
| 861 | #container_sync = true |
| 862 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 863 | # Execute object-versioning tests (boolean value) |
| 864 | #object_versioning = true |
Daisuke Morita | 20a183f | 2014-08-25 14:43:36 +0900 | [diff] [blame] | 865 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 866 | # Execute discoverability tests (boolean value) |
| 867 | #discoverability = true |
| 868 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 869 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 870 | [orchestration] |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 871 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 872 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 873 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 874 | # |
Attila Fazekas | 8695073 | 2013-06-08 09:33:08 +0200 | [diff] [blame] | 875 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 876 | # Catalog type of the Orchestration service. (string value) |
| 877 | #catalog_type = orchestration |
| 878 | |
| 879 | # The orchestration region name to use. If empty, the value of |
| 880 | # identity.region is used instead. If no such region is found in the |
| 881 | # service catalog, the first found one is used. (string value) |
| 882 | #region = |
| 883 | |
| 884 | # The endpoint type to use for the orchestration service. (string |
| 885 | # value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 886 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 887 | #endpoint_type = publicURL |
| 888 | |
Matthew Treinish | db9721d | 2015-03-18 14:21:28 -0400 | [diff] [blame] | 889 | # Role required for users to be able to manage stacks (string value) |
| 890 | #stack_owner_role = heat_stack_owner |
| 891 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 892 | # Time in seconds between build status checks. (integer value) |
| 893 | #build_interval = 1 |
| 894 | |
| 895 | # Timeout in seconds to wait for a stack to build. (integer value) |
| 896 | #build_timeout = 1200 |
| 897 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 898 | # Instance type for tests. Needs to be big enough for a full OS plus |
| 899 | # the test workload (string value) |
| 900 | #instance_type = m1.micro |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 901 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 902 | # Name of existing keypair to launch servers with. (string value) |
| 903 | #keypair_name = <None> |
| 904 | |
| 905 | # Value must match heat configuration of the same name. (integer |
| 906 | # value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 907 | #max_template_size = 524288 |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 908 | |
| 909 | # Value must match heat configuration of the same name. (integer |
| 910 | # value) |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 911 | #max_resources_per_stack = 1000 |
Steven Hardy | fdc6bd7 | 2014-03-21 16:56:04 +0000 | [diff] [blame] | 912 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 913 | |
Doug Hellmann | 583ce2c | 2015-03-11 14:55:46 +0000 | [diff] [blame] | 914 | [oslo_concurrency] |
| 915 | |
| 916 | # |
| 917 | # From oslo.concurrency |
| 918 | # |
| 919 | |
| 920 | # Enables or disables inter-process locks. (boolean value) |
| 921 | # Deprecated group/name - [DEFAULT]/disable_process_locking |
| 922 | #disable_process_locking = false |
| 923 | |
| 924 | # Directory to use for lock files. For security, the specified |
| 925 | # directory should only be writable by the user running the processes |
| 926 | # that need locking. Defaults to environment variable OSLO_LOCK_PATH. |
| 927 | # If external locks are used, a lock path must be set. (string value) |
| 928 | # Deprecated group/name - [DEFAULT]/lock_path |
| 929 | #lock_path = <None> |
| 930 | |
| 931 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 932 | [scenario] |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 933 | |
| 934 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 935 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 936 | # |
| 937 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 938 | # Directory containing image files (string value) |
| 939 | #img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec |
| 940 | |
| 941 | # Image file name (string value) |
| 942 | # Deprecated group/name - [DEFAULT]/qcow2_img_file |
| 943 | #img_file = cirros-0.3.1-x86_64-disk.img |
| 944 | |
| 945 | # Image disk format (string value) |
| 946 | #img_disk_format = qcow2 |
| 947 | |
| 948 | # Image container format (string value) |
| 949 | #img_container_format = bare |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 950 | |
| 951 | # AMI image file name (string value) |
| 952 | #ami_img_file = cirros-0.3.1-x86_64-blank.img |
| 953 | |
| 954 | # ARI image file name (string value) |
| 955 | #ari_img_file = cirros-0.3.1-x86_64-initrd |
| 956 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 957 | # AKI image file name (string value) |
| 958 | #aki_img_file = cirros-0.3.1-x86_64-vmlinuz |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 959 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 960 | # ssh username for the image file (string value) |
| 961 | #ssh_user = cirros |
Alessandro Pilotti | b7c1daa | 2014-08-16 14:24:13 +0300 | [diff] [blame] | 962 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 963 | # specifies how many resources to request at once. Used for large |
| 964 | # operations testing. (integer value) |
| 965 | #large_ops_number = 0 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 966 | |
Yair Fried | 413bf2d | 2014-11-19 17:07:11 +0200 | [diff] [blame] | 967 | # DHCP client used by images to renew DCHP lease. If left empty, |
| 968 | # update operation will be skipped. Supported clients: "udhcpc", |
| 969 | # "dhclient" (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 970 | # Allowed values: udhcpc, dhclient |
Yair Fried | 413bf2d | 2014-11-19 17:07:11 +0200 | [diff] [blame] | 971 | #dhcp_client = udhcpc |
| 972 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 973 | |
| 974 | [service_available] |
| 975 | |
| 976 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 977 | # From tempest.config |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 978 | # |
| 979 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 980 | # Whether or not cinder is expected to be available (boolean value) |
| 981 | #cinder = true |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 982 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 983 | # Whether or not neutron is expected to be available (boolean value) |
| 984 | #neutron = false |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 985 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 986 | # Whether or not glance is expected to be available (boolean value) |
| 987 | #glance = true |
| 988 | |
| 989 | # Whether or not swift is expected to be available (boolean value) |
| 990 | #swift = true |
| 991 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 992 | # Whether or not nova is expected to be available (boolean value) |
| 993 | #nova = true |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 994 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 995 | # Whether or not Heat is expected to be available (boolean value) |
| 996 | #heat = false |
| 997 | |
| 998 | # Whether or not Ceilometer is expected to be available (boolean |
| 999 | # value) |
| 1000 | #ceilometer = true |
| 1001 | |
| 1002 | # Whether or not Horizon is expected to be available (boolean value) |
| 1003 | #horizon = true |
| 1004 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1005 | # Whether or not Sahara is expected to be available (boolean value) |
| 1006 | #sahara = false |
Matthew Treinish | e3d2614 | 2013-11-26 19:14:58 +0000 | [diff] [blame] | 1007 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1008 | # Whether or not Ironic is expected to be available (boolean value) |
| 1009 | #ironic = false |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 1010 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1011 | # Whether or not Trove is expected to be available (boolean value) |
| 1012 | #trove = false |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 1013 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1014 | # Whether or not Zaqar is expected to be available (boolean value) |
| 1015 | #zaqar = false |
Malini Kamalambal | 6e7b3b8 | 2014-02-06 06:49:04 -0500 | [diff] [blame] | 1016 | |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 1017 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1018 | [stress] |
| 1019 | |
| 1020 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1021 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1022 | # |
| 1023 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1024 | # Directory containing log files on the compute nodes (string value) |
| 1025 | #nova_logdir = <None> |
| 1026 | |
| 1027 | # Maximum number of instances to create during test. (integer value) |
| 1028 | #max_instances = 16 |
| 1029 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1030 | # Controller host. (string value) |
| 1031 | #controller = <None> |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1032 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1033 | # Controller host. (string value) |
| 1034 | #target_controller = <None> |
| 1035 | |
| 1036 | # ssh user. (string value) |
| 1037 | #target_ssh_user = <None> |
| 1038 | |
| 1039 | # Path to private key. (string value) |
| 1040 | #target_private_key_path = <None> |
| 1041 | |
| 1042 | # regexp for list of log files. (string value) |
| 1043 | #target_logfiles = <None> |
| 1044 | |
| 1045 | # time (in seconds) between log file error checks. (integer value) |
| 1046 | #log_check_interval = 60 |
| 1047 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1048 | # The number of threads created while stress test. (integer value) |
| 1049 | #default_thread_number_per_action = 4 |
| 1050 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1051 | # Prevent the cleaning (tearDownClass()) between each stress test run |
| 1052 | # if an exception occurs during this run. (boolean value) |
| 1053 | #leave_dirty_stack = false |
| 1054 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1055 | # Allows a full cleaning process after a stress test. Caution : this |
| 1056 | # cleanup will remove every objects of every tenant. (boolean value) |
| 1057 | #full_clean_stack = false |
Julien Leloup | a5ee542 | 2014-02-13 14:29:02 +0100 | [diff] [blame] | 1058 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1059 | |
| 1060 | [telemetry] |
| 1061 | |
| 1062 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1063 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1064 | # |
| 1065 | |
| 1066 | # Catalog type of the Telemetry service. (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1067 | #catalog_type = metering |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1068 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1069 | # The endpoint type to use for the telemetry service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 1070 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1071 | #endpoint_type = publicURL |
| 1072 | |
| 1073 | # This variable is used as flag to enable notification tests (boolean |
JordanP | fc62c90 | 2014-02-26 14:47:28 +0000 | [diff] [blame] | 1074 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1075 | #too_slow_to_test = true |
Vadim Rovachev | 7bcea35 | 2013-12-26 15:56:17 +0400 | [diff] [blame] | 1076 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1077 | |
| 1078 | [volume] |
| 1079 | |
| 1080 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1081 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1082 | # |
| 1083 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1084 | # Time in seconds between volume availability checks. (integer value) |
| 1085 | #build_interval = 1 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1086 | |
Eric Harney | 9b1f89c | 2014-10-14 14:40:19 -0400 | [diff] [blame] | 1087 | # Timeout in seconds to wait for a volume to become available. |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1088 | # (integer value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1089 | #build_timeout = 300 |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1090 | |
| 1091 | # Catalog type of the Volume Service (string value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1092 | #catalog_type = volume |
| 1093 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1094 | # The volume region name to use. If empty, the value of |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1095 | # identity.region is used instead. If no such region is found in the |
| 1096 | # service catalog, the first found one is used. (string value) |
| 1097 | #region = |
| 1098 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1099 | # The endpoint type to use for the volume service. (string value) |
Davanum Srinivas | efead03 | 2015-03-09 17:27:42 -0400 | [diff] [blame] | 1100 | # Allowed values: public, admin, internal, publicURL, adminURL, internalURL |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1101 | #endpoint_type = publicURL |
| 1102 | |
| 1103 | # Name of the backend1 (must be declared in cinder.conf) (string |
| 1104 | # value) |
| 1105 | #backend1_name = BACKEND_1 |
| 1106 | |
| 1107 | # Name of the backend2 (must be declared in cinder.conf) (string |
| 1108 | # value) |
| 1109 | #backend2_name = BACKEND_2 |
| 1110 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1111 | # Backend protocol to target when creating volume types (string value) |
| 1112 | #storage_protocol = iSCSI |
| 1113 | |
| 1114 | # Backend vendor to target when creating volume types (string value) |
| 1115 | #vendor_name = Open Source |
| 1116 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1117 | # Disk format to use when copying a volume to image (string value) |
| 1118 | #disk_format = raw |
| 1119 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1120 | # Default size in GB for volumes created by volumes tests (integer |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1121 | # value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1122 | #volume_size = 1 |
Jerry Cai | 9733d0e | 2014-03-19 15:50:49 +0800 | [diff] [blame] | 1123 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1124 | |
| 1125 | [volume-feature-enabled] |
| 1126 | |
| 1127 | # |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1128 | # From tempest.config |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1129 | # |
| 1130 | |
Matthew Treinish | c603d16 | 2015-01-05 20:03:40 -0500 | [diff] [blame] | 1131 | # Runs Cinder multi-backend test (requires 2 backends) (boolean value) |
| 1132 | #multi_backend = false |
| 1133 | |
| 1134 | # Runs Cinder volumes backup test (boolean value) |
| 1135 | #backup = true |
| 1136 | |
| 1137 | # Runs Cinder volume snapshot test (boolean value) |
| 1138 | #snapshot = true |
| 1139 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1140 | # A list of enabled volume extensions with a special entry all which |
| 1141 | # indicates every extension is enabled. Empty list indicates all |
| 1142 | # extensions are disabled (list value) |
| 1143 | #api_extensions = all |
Zhi Kun Liu | de25c02 | 2014-02-14 13:25:19 +0800 | [diff] [blame] | 1144 | |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1145 | # Is the v1 volume API enabled (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1146 | #api_v1 = true |
Sean Dague | fc691e3 | 2014-01-03 08:51:54 -0500 | [diff] [blame] | 1147 | |
Zhi Kun Liu | 8cc3c84 | 2014-01-07 10:44:34 +0800 | [diff] [blame] | 1148 | # Is the v2 volume API enabled (boolean value) |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 1149 | #api_v2 = true |