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