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