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