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