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