Matthew Treinish | f4a9b0f | 2013-07-26 16:58:26 -0400 | [diff] [blame] | 1 | [DEFAULT] |
Attila Fazekas | c3a095b | 2013-08-17 09:15:44 +0200 | [diff] [blame] | 2 | #log_config = /opt/stack/tempest/etc/logging.conf.sample |
Attila Fazekas | bfd96e1 | 2013-07-31 17:19:10 +0200 | [diff] [blame] | 3 | |
| 4 | # disable logging to the stderr |
| 5 | use_stderr = False |
| 6 | |
| 7 | # log file |
| 8 | log_file = tempest.log |
| 9 | |
| 10 | # lock/semaphore base directory |
Matthew Treinish | 07248e5 | 2013-07-26 11:18:44 -0400 | [diff] [blame] | 11 | lock_path=/tmp |
Matthew Treinish | f4a9b0f | 2013-07-26 16:58:26 -0400 | [diff] [blame] | 12 | |
Marc Koderer | b714de5 | 2013-08-08 09:21:46 +0200 | [diff] [blame] | 13 | default_log_levels=tempest.stress=INFO,amqplib=WARN,sqlalchemy=WARN,boto=WARN,suds=INFO,keystone=INFO,eventlet.wsgi.server=WARN |
| 14 | |
Daryl Walleck | 587385b | 2012-03-03 13:00:26 -0600 | [diff] [blame] | 15 | [identity] |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 16 | # This section contains configuration options that a variety of Tempest |
| 17 | # test clients use when authenticating with different user/tenant |
| 18 | # combinations |
| 19 | |
chris fattarsi | 8ed39ac | 2012-04-30 14:11:27 -0700 | [diff] [blame] | 20 | # The type of endpoint for a Identity service. Unless you have a |
| 21 | # custom Keystone service catalog implementation, you probably want to leave |
| 22 | # this value as "identity" |
| 23 | catalog_type = identity |
Jay Pipes | cd8eaec | 2013-01-16 21:03:48 -0500 | [diff] [blame] | 24 | # Ignore SSL certificate validation failures? Use when in testing |
| 25 | # environments that have self-signed SSL certs. |
| 26 | disable_ssl_certificate_validation = False |
Jay Pipes | 7c88eb2 | 2013-01-16 21:32:43 -0500 | [diff] [blame] | 27 | # URL for where to find the OpenStack Identity API endpoint (Keystone) |
| 28 | uri = http://127.0.0.1:5000/v2.0/ |
Brant Knudson | c7ca334 | 2013-03-28 21:08:50 -0500 | [diff] [blame] | 29 | # URL for where to find the OpenStack V3 Identity API endpoint (Keystone) |
| 30 | uri_v3 = http://127.0.0.1:5000/v3/ |
K Jonathan Harker | d6ba4b4 | 2012-12-18 13:50:47 -0800 | [diff] [blame] | 31 | # The identity region |
| 32 | region = RegionOne |
Daryl Walleck | 587385b | 2012-03-03 13:00:26 -0600 | [diff] [blame] | 33 | |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 34 | # This should be the username of a user WITHOUT administrative privileges |
| 35 | username = demo |
| 36 | # The above non-administrative user's password |
| 37 | password = secret |
| 38 | # The above non-administrative user's tenant name |
| 39 | tenant_name = demo |
| 40 | |
| 41 | # This should be the username of an alternate user WITHOUT |
| 42 | # administrative privileges |
| 43 | alt_username = alt_demo |
| 44 | # The above non-administrative user's password |
| 45 | alt_password = secret |
| 46 | # The above non-administrative user's tenant name |
| 47 | alt_tenant_name = alt_demo |
| 48 | |
| 49 | # This should be the username of a user WITH administrative privileges |
| 50 | admin_username = admin |
Maru Newby | 28c1dce | 2013-04-08 20:02:06 +0000 | [diff] [blame] | 51 | # The above administrative user's password |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 52 | admin_password = secret |
Maru Newby | 28c1dce | 2013-04-08 20:02:06 +0000 | [diff] [blame] | 53 | # The above administrative user's tenant name |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 54 | admin_tenant_name = admin |
| 55 | |
Russell Sim | 7f894a5 | 2013-09-13 10:35:21 +1000 | [diff] [blame^] | 56 | # The role that is required to administrate keystone. |
| 57 | admin_role = admin |
| 58 | |
Daryl Walleck | 587385b | 2012-03-03 13:00:26 -0600 | [diff] [blame] | 59 | [compute] |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 60 | # This section contains configuration options used when executing tests |
| 61 | # against the OpenStack Compute API. |
| 62 | |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 63 | # Allows test cases to create/destroy tenants and users. This option |
| 64 | # enables isolated test cases and better parallel execution, |
| 65 | # but also requires that OpenStack Identity API admin credentials |
| 66 | # are known. |
| 67 | allow_tenant_isolation = true |
| 68 | |
Dan Smith | d6ff6b7 | 2012-08-23 10:29:41 -0700 | [diff] [blame] | 69 | # Allows test cases to create/destroy tenants and users. This option |
| 70 | # enables isolated test cases and better parallel execution, |
| 71 | # but also requires that OpenStack Identity API admin credentials |
| 72 | # are known. |
| 73 | allow_tenant_reuse = true |
| 74 | |
Daryl Walleck | 587385b | 2012-03-03 13:00:26 -0600 | [diff] [blame] | 75 | # Reference data for tests. The ref and ref_alt should be |
| 76 | # distinct images/flavors. |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 77 | image_ref = {$IMAGE_ID} |
| 78 | image_ref_alt = {$IMAGE_ID_ALT} |
| 79 | flavor_ref = 1 |
| 80 | flavor_ref_alt = 2 |
| 81 | |
Ryan Hsu | cb2e125 | 2013-09-03 21:44:49 -0700 | [diff] [blame] | 82 | # User name used to authenticate to an instance |
Maru Newby | af292e8 | 2013-05-20 21:32:28 +0000 | [diff] [blame] | 83 | image_ssh_user = root |
Ryan Hsu | cb2e125 | 2013-09-03 21:44:49 -0700 | [diff] [blame] | 84 | |
| 85 | # Password used to authenticate to an instance |
| 86 | image_ssh_password = password |
| 87 | |
| 88 | # User name used to authenticate to an instance using the alternate image |
Maru Newby | af292e8 | 2013-05-20 21:32:28 +0000 | [diff] [blame] | 89 | image_alt_ssh_user = root |
| 90 | |
Ryan Hsu | cb2e125 | 2013-09-03 21:44:49 -0700 | [diff] [blame] | 91 | # Password used to authenticate to an instance using the alternate image |
| 92 | image_alt_ssh_password = password |
| 93 | |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 94 | # Number of seconds to wait while looping to check the status of an |
Rohit Karajgi | dd47d7e | 2012-07-31 04:11:01 -0700 | [diff] [blame] | 95 | # instance that is building. |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 96 | build_interval = 10 |
| 97 | |
Rohit Karajgi | dd47d7e | 2012-07-31 04:11:01 -0700 | [diff] [blame] | 98 | # Number of seconds to time out on waiting for an instance |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 99 | # to build or reach an expected status |
| 100 | build_timeout = 600 |
| 101 | |
Daryl Walleck | 6b9b288 | 2012-04-08 21:43:39 -0500 | [diff] [blame] | 102 | # Run additional tests that use SSH for instance validation? |
| 103 | # This requires the instances be routable from the host |
| 104 | # executing the tests |
| 105 | run_ssh = false |
| 106 | |
Ryan Hsu | cb2e125 | 2013-09-03 21:44:49 -0700 | [diff] [blame] | 107 | # Name of a user used to authenticate to an instance. |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 108 | ssh_user = cirros |
Daryl Walleck | 6b9b288 | 2012-04-08 21:43:39 -0500 | [diff] [blame] | 109 | |
Attila Fazekas | b066165 | 2013-05-08 13:01:36 +0200 | [diff] [blame] | 110 | # Visible fixed network name |
| 111 | fixed_network_name = private |
| 112 | |
Daryl Walleck | 6b9b288 | 2012-04-08 21:43:39 -0500 | [diff] [blame] | 113 | # Network id used for SSH (public, private, etc) |
Matt Riedemann | a80778d | 2013-07-31 03:37:41 -0700 | [diff] [blame] | 114 | network_for_ssh = public |
Daryl Walleck | 6b9b288 | 2012-04-08 21:43:39 -0500 | [diff] [blame] | 115 | |
| 116 | # IP version of the address used for SSH |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 117 | ip_version_for_ssh = 4 |
Daryl Walleck | 6b9b288 | 2012-04-08 21:43:39 -0500 | [diff] [blame] | 118 | |
Nachi Ueno | 6d580be | 2013-07-24 10:58:11 -0700 | [diff] [blame] | 119 | # Number of seconds to wait to ping to an instance |
| 120 | ping_timeout = 60 |
| 121 | |
Daryl Walleck | 6b9b288 | 2012-04-08 21:43:39 -0500 | [diff] [blame] | 122 | # Number of seconds to wait to authenticate to an instance |
| 123 | ssh_timeout = 300 |
| 124 | |
Chris Yeoh | 7691604 | 2013-02-27 16:25:25 +1030 | [diff] [blame] | 125 | # Number of seconds to wait for output from ssh channel |
| 126 | ssh_channel_timeout = 60 |
| 127 | |
fujioka yuuichi | a11994e | 2013-07-09 11:19:51 +0900 | [diff] [blame] | 128 | # Dose the SSH uses Floating IP? |
| 129 | use_floatingip_for_ssh = True |
| 130 | |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 131 | # The type of endpoint for a Compute API service. Unless you have a |
| 132 | # custom Keystone service catalog implementation, you probably want to leave |
| 133 | # this value as "compute" |
| 134 | catalog_type = compute |
| 135 | |
| 136 | # Does the Compute API support creation of images? |
| 137 | create_image_enabled = true |
| 138 | |
David Kranz | 30fe84a | 2012-03-20 16:25:47 -0400 | [diff] [blame] | 139 | # For resize to work with libvirt/kvm, one of the following must be true: |
| 140 | # Single node: allow_resize_to_same_host=True must be set in nova.conf |
| 141 | # Cluster: the 'nova' user must have scp access between cluster nodes |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 142 | resize_available = true |
Daryl Walleck | e5b83d4 | 2011-11-10 14:39:02 -0600 | [diff] [blame] | 143 | |
David Kranz | f97d5fd | 2012-07-30 13:46:45 -0400 | [diff] [blame] | 144 | # Does the compute API support changing the admin password? |
| 145 | change_password_available=true |
| 146 | |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 147 | # Run live migration tests (requires 2 hosts) |
| 148 | live_migration_available = false |
| 149 | |
| 150 | # Use block live migration (Otherwise, non-block migration will be |
| 151 | # performed, which requires XenServer pools in case of using XS) |
| 152 | use_block_migration_for_live_migration = false |
| 153 | |
Bob Ball | c078be9 | 2013-04-09 14:25:00 +0100 | [diff] [blame] | 154 | # Supports iSCSI block migration - depends on a XAPI supporting |
| 155 | # relax-xsm-sr-check |
| 156 | block_migrate_supports_cinder_iscsi = false |
| 157 | |
Attila Fazekas | 8695073 | 2013-06-08 09:33:08 +0200 | [diff] [blame] | 158 | # When set to false, disk config tests are forced to skip |
| 159 | disk_config_enabled = true |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 160 | |
Attila Fazekas | 8695073 | 2013-06-08 09:33:08 +0200 | [diff] [blame] | 161 | # When set to false, flavor extra data tests are forced to skip |
| 162 | flavor_extra_enabled = true |
Attila Fazekas | 3ca1fb3 | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 163 | |
Ryan Hsu | cb2e125 | 2013-09-03 21:44:49 -0700 | [diff] [blame] | 164 | # Expected first device name when a volume is attached to an instance |
| 165 | volume_device_name = vdb |
| 166 | |
Attila Fazekas | 3ca1fb3 | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 167 | [whitebox] |
| 168 | # Whitebox options for compute. Whitebox options enable the |
| 169 | # whitebox test cases, which look at internal Nova database state, |
| 170 | # SSH into VMs to check instance state, etc. |
| 171 | |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 172 | # Should we run whitebox tests for Compute? |
| 173 | whitebox_enabled = true |
| 174 | |
| 175 | # Path of nova source directory |
| 176 | source_dir = /opt/stack/nova |
| 177 | |
| 178 | # Path of nova configuration file |
| 179 | config_path = /etc/nova/nova.conf |
| 180 | |
| 181 | # Directory containing nova binaries such as nova-manage |
| 182 | bin_dir = /usr/local/bin |
| 183 | |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 184 | # Connection string to the database of Compute service |
| 185 | db_uri = mysql://nova:secret@localhost/nova |
| 186 | |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 187 | # Path to a private key file for SSH access to remote hosts |
| 188 | path_to_private_key = /home/user/.ssh/id_rsa |
| 189 | |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 190 | [compute-admin] |
| 191 | # This should be the username of a user WITH administrative privileges |
| 192 | # If not defined the admin user from the identity section will be used |
| 193 | username = |
| 194 | # The above administrative user's password |
| 195 | password = |
| 196 | # The above administrative user's tenant name |
| 197 | tenant_name = |
Armando Migliaccio | b8cc220 | 2012-12-12 17:20:51 +0000 | [diff] [blame] | 198 | |
Eoghan Glynn | 4b10c7c | 2012-03-01 13:13:35 -0500 | [diff] [blame] | 199 | [image] |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 200 | # This section contains configuration options used when executing tests |
| 201 | # against the OpenStack Images API |
| 202 | |
Jay Pipes | ad6feca | 2012-04-30 15:10:18 -0400 | [diff] [blame] | 203 | # The type of endpoint for an Image API service. Unless you have a |
| 204 | # custom Keystone service catalog implementation, you probably want to leave |
| 205 | # this value as "image" |
| 206 | catalog_type = image |
| 207 | |
| 208 | # The version of the OpenStack Images API to use |
| 209 | api_version = 1 |
| 210 | |
Sean Dague | 8340199 | 2013-05-06 17:46:36 -0400 | [diff] [blame] | 211 | # HTTP image to use for glance http image testing |
| 212 | http_image = http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz |
| 213 | |
Unmesh Gurjar | 4498683 | 2012-05-08 19:57:10 +0530 | [diff] [blame] | 214 | [network] |
| 215 | # This section contains configuration options used when executing tests |
| 216 | # against the OpenStack Network API. |
Rohit Karajgi | dd47d7e | 2012-07-31 04:11:01 -0700 | [diff] [blame] | 217 | |
Mark McClain | f2982e8 | 2013-07-06 17:48:03 -0400 | [diff] [blame] | 218 | # Version of the Neutron API |
Unmesh Gurjar | 4498683 | 2012-05-08 19:57:10 +0530 | [diff] [blame] | 219 | api_version = v1.1 |
Mark McClain | f2982e8 | 2013-07-06 17:48:03 -0400 | [diff] [blame] | 220 | # Catalog type of the Neutron Service |
Unmesh Gurjar | 4498683 | 2012-05-08 19:57:10 +0530 | [diff] [blame] | 221 | catalog_type = network |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 222 | |
Maru Newby | 81f07a0 | 2012-09-05 20:21:19 -0700 | [diff] [blame] | 223 | # A large private cidr block from which to allocate smaller blocks for |
| 224 | # tenant networks. |
| 225 | tenant_network_cidr = 10.100.0.0/16 |
| 226 | |
| 227 | # The mask bits used to partition the tenant block. |
Gavin Brebner | 516487b | 2013-03-14 13:43:21 +0000 | [diff] [blame] | 228 | tenant_network_mask_bits = 28 |
Maru Newby | 81f07a0 | 2012-09-05 20:21:19 -0700 | [diff] [blame] | 229 | |
| 230 | # If tenant networks are reachable, connectivity checks will be |
| 231 | # performed directly against addresses on those networks. |
| 232 | tenant_networks_reachable = false |
| 233 | |
| 234 | # Id of the public network that provides external connectivity. |
Maru Newby | 22ec5d9 | 2012-12-19 02:57:04 +0000 | [diff] [blame] | 235 | public_network_id = {$PUBLIC_NETWORK_ID} |
Maru Newby | 81f07a0 | 2012-09-05 20:21:19 -0700 | [diff] [blame] | 236 | |
| 237 | # Id of a shared public router that provides external connectivity. |
| 238 | # A shared public router would commonly be used where IP namespaces |
| 239 | # were disabled. If namespaces are enabled, it would be preferable |
| 240 | # for each tenant to have their own router. |
Maru Newby | 22ec5d9 | 2012-12-19 02:57:04 +0000 | [diff] [blame] | 241 | public_router_id = {$PUBLIC_ROUTER_ID} |
Maru Newby | 81f07a0 | 2012-09-05 20:21:19 -0700 | [diff] [blame] | 242 | |
Dan Smith | d6c1f88 | 2013-02-26 15:50:11 -0500 | [diff] [blame] | 243 | |
Rohit Karajgi | dd47d7e | 2012-07-31 04:11:01 -0700 | [diff] [blame] | 244 | [volume] |
Joe Gordon | 979da33 | 2012-11-27 11:46:59 -0800 | [diff] [blame] | 245 | # This section contains the configuration options used when executing tests |
Rohit Karajgi | dd47d7e | 2012-07-31 04:11:01 -0700 | [diff] [blame] | 246 | # against the OpenStack Block Storage API service |
| 247 | |
| 248 | # The type of endpoint for a Cinder or Block Storage API service. |
| 249 | # Unless you have a custom Keystone service catalog implementation, you |
| 250 | # probably want to leave this value as "volume" |
| 251 | catalog_type = volume |
| 252 | # Number of seconds to wait while looping to check the status of a |
| 253 | # volume that is being made available |
| 254 | build_interval = 10 |
| 255 | # Number of seconds to time out on waiting for a volume |
| 256 | # to be available or reach an expected status |
| 257 | build_timeout = 300 |
Giulio Fidente | f4fa894 | 2013-05-28 18:48:03 +0200 | [diff] [blame] | 258 | # Runs Cinder multi-backend tests (requires 2 backends declared in cinder.conf) |
Jérôme Gallard | 86551ce | 2013-03-08 11:41:26 +0100 | [diff] [blame] | 259 | # They must have different volume_backend_name (backend1_name and backend2_name |
| 260 | # have to be different) |
| 261 | multi_backend_enabled = false |
Giulio Fidente | f4fa894 | 2013-05-28 18:48:03 +0200 | [diff] [blame] | 262 | backend1_name = BACKEND_1 |
| 263 | backend2_name = BACKEND_2 |
Adam Gandelman | 827ad33 | 2013-06-24 17:04:09 -0700 | [diff] [blame] | 264 | # Protocol and vendor of volume backend to target when testing volume-types. |
| 265 | # You should update to reflect those exported by configured backend driver. |
| 266 | storage_protocol = iSCSI |
| 267 | vendor_name = Open Source |
dwalleck | 5d73443 | 2012-10-04 01:11:47 -0500 | [diff] [blame] | 268 | |
| 269 | [object-storage] |
| 270 | # This section contains configuration options used when executing tests |
| 271 | # against the OpenStack Object Storage API. |
Attila Fazekas | 9492d35 | 2012-12-04 13:55:58 +0100 | [diff] [blame] | 272 | |
| 273 | # You can configure the credentials in the compute section |
dwalleck | 5d73443 | 2012-10-04 01:11:47 -0500 | [diff] [blame] | 274 | |
| 275 | # The type of endpoint for an Object Storage API service. Unless you have a |
| 276 | # custom Keystone service catalog implementation, you probably want to leave |
| 277 | # this value as "object-store" |
| 278 | catalog_type = object-store |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 279 | |
nayna-patel | b4989b3 | 2013-01-09 06:25:13 +0000 | [diff] [blame] | 280 | # Number of seconds to time on waiting for a container to container |
| 281 | # synchronization complete |
| 282 | container_sync_timeout = 120 |
| 283 | # Number of seconds to wait while looping to check the status of a |
| 284 | # container to container synchronization |
| 285 | container_sync_interval = 5 |
Joe H. Rahme | 2b31257 | 2013-07-31 17:53:23 +0200 | [diff] [blame] | 286 | # Set to True if the Account Quota middleware is enabled |
| 287 | accounts_quotas_available = True |
K Jonathan Harker | d6ba4b4 | 2012-12-18 13:50:47 -0800 | [diff] [blame] | 288 | |
Matthew Treinish | 3fdb80c | 2013-08-15 11:13:19 -0400 | [diff] [blame] | 289 | # Set operator role for tests that require creating a container |
| 290 | operator_role = Member |
| 291 | |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 292 | [boto] |
| 293 | # This section contains configuration options used when executing tests |
| 294 | # with boto. |
| 295 | |
| 296 | # EC2 URL |
| 297 | ec2_url = http://localhost:8773/services/Cloud |
| 298 | # S3 URL |
| 299 | s3_url = http://localhost:3333 |
| 300 | |
| 301 | # Use keystone ec2-* command to get those values for your test user and tenant |
| 302 | aws_access = |
| 303 | aws_secret = |
| 304 | |
Attila Fazekas | c3a095b | 2013-08-17 09:15:44 +0200 | [diff] [blame] | 305 | # Image materials for S3 upload |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 306 | # ALL content of the specified directory will be uploaded to S3 |
Chris Yeoh | 7691604 | 2013-02-27 16:25:25 +1030 | [diff] [blame] | 307 | s3_materials_path = /opt/stack/devstack/files/images/s3-materials/cirros-0.3.1 |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 308 | |
| 309 | # The manifest.xml files, must be in the s3_materials_path directory |
| 310 | # Subdirectories not allowed! |
| 311 | # The filenames will be used as a Keys in the S3 Buckets |
| 312 | |
Attila Fazekas | c3a095b | 2013-08-17 09:15:44 +0200 | [diff] [blame] | 313 | # ARI Ramdisk manifest. Must be in the above s3_materials_path |
Chris Yeoh | 7691604 | 2013-02-27 16:25:25 +1030 | [diff] [blame] | 314 | ari_manifest = cirros-0.3.1-x86_64-initrd.manifest.xml |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 315 | |
Attila Fazekas | c3a095b | 2013-08-17 09:15:44 +0200 | [diff] [blame] | 316 | # AMI Machine Image manifest. Must be in the above s3_materials_path |
Chris Yeoh | 7691604 | 2013-02-27 16:25:25 +1030 | [diff] [blame] | 317 | ami_manifest = cirros-0.3.1-x86_64-blank.img.manifest.xml |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 318 | |
Attila Fazekas | c3a095b | 2013-08-17 09:15:44 +0200 | [diff] [blame] | 319 | # AKI Kernel Image manifest, Must be in the above s3_materials_path |
Chris Yeoh | 7691604 | 2013-02-27 16:25:25 +1030 | [diff] [blame] | 320 | aki_manifest = cirros-0.3.1-x86_64-vmlinuz.manifest.xml |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 321 | |
Attila Fazekas | c3a095b | 2013-08-17 09:15:44 +0200 | [diff] [blame] | 322 | # Instance type |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 323 | instance_type = m1.tiny |
| 324 | |
Attila Fazekas | c3a095b | 2013-08-17 09:15:44 +0200 | [diff] [blame] | 325 | # TCP/IP connection timeout |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 326 | http_socket_timeout = 5 |
| 327 | |
Attila Fazekas | c3a095b | 2013-08-17 09:15:44 +0200 | [diff] [blame] | 328 | # Number of retries actions on connection or 5xx error |
Attila Fazekas | f7f2d93 | 2012-12-13 09:14:38 +0100 | [diff] [blame] | 329 | num_retries = 1 |
| 330 | |
Attila Fazekas | a23f500 | 2012-10-23 19:32:45 +0200 | [diff] [blame] | 331 | # Status change wait timout |
| 332 | build_timeout = 120 |
| 333 | |
| 334 | # Status change wait interval |
| 335 | build_interval = 1 |
Steve Baker | c60e4e3 | 2013-05-06 15:22:41 +1200 | [diff] [blame] | 336 | |
| 337 | [orchestration] |
| 338 | # Status change wait interval |
| 339 | build_interval = 1 |
| 340 | |
| 341 | # Status change wait timout. This may vary across environments as some some |
| 342 | # tests spawn full VMs, which could be slow if the test is already in a VM. |
| 343 | build_timeout = 300 |
| 344 | |
Steve Baker | c60e4e3 | 2013-05-06 15:22:41 +1200 | [diff] [blame] | 345 | # Instance type for tests. Needs to be big enough for a |
| 346 | # full OS plus the test workload |
Steve Baker | 9e86b83 | 2013-05-22 15:40:28 +1200 | [diff] [blame] | 347 | instance_type = m1.micro |
Steve Baker | c60e4e3 | 2013-05-06 15:22:41 +1200 | [diff] [blame] | 348 | |
| 349 | # Name of heat-cfntools enabled image to use when launching test instances |
| 350 | # If not specified, tests that spawn instances will not run |
| 351 | #image_ref = ubuntu-vm-heat-cfntools |
| 352 | |
| 353 | # Name of existing keypair to launch servers with. The default is not to specify |
| 354 | # any key, which will generate a keypair for each test class |
| 355 | #keypair_name = heat_key |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 356 | |
Julie Pichon | d101764 | 2013-07-24 16:37:23 +0100 | [diff] [blame] | 357 | [dashboard] |
| 358 | # URL where to find the dashboard home page |
| 359 | dashboard_url = 'http://localhost/' |
| 360 | |
| 361 | # URL where to submit the login form |
| 362 | login_url = 'http://localhost/auth/login/' |
| 363 | |
Masayuki Igawa | 73d9f3a | 2013-05-24 10:30:01 +0900 | [diff] [blame] | 364 | [scenario] |
| 365 | # Directory containing image files |
| 366 | img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec |
| 367 | |
| 368 | # AMI image file name |
| 369 | ami_img_file = cirros-0.3.1-x86_64-blank.img |
| 370 | |
| 371 | # ARI image file name |
| 372 | ari_img_file = cirros-0.3.1-x86_64-initrd |
| 373 | |
| 374 | # AKI image file name |
| 375 | aki_img_file = cirros-0.3.1-x86_64-vmlinuz |
| 376 | |
| 377 | # ssh username for the image file |
| 378 | ssh_user = cirros |
Attila Fazekas | 8695073 | 2013-06-08 09:33:08 +0200 | [diff] [blame] | 379 | |
Joe Gordon | b5e10cd | 2013-07-10 15:51:12 +0000 | [diff] [blame] | 380 | # specifies how many resources to request at once. Used for large operations |
| 381 | # testing." |
| 382 | large_ops_number = 0 |
| 383 | |
Mikhail S Medvedev | 13168d0 | 2013-06-24 16:13:40 -0500 | [diff] [blame] | 384 | [cli] |
Attila Fazekas | 8695073 | 2013-06-08 09:33:08 +0200 | [diff] [blame] | 385 | # Enable cli tests |
| 386 | enabled = True |
| 387 | # directory where python client binaries are located |
Mikhail S Medvedev | 13168d0 | 2013-06-24 16:13:40 -0500 | [diff] [blame] | 388 | cli_dir = /usr/local/bin |
Matt Riedemann | ab038c9 | 2013-08-06 06:56:48 -0700 | [diff] [blame] | 389 | # Number of seconds to wait on a CLI timeout |
| 390 | timeout = 15 |
Matthew Treinish | 4c41292 | 2013-07-16 15:27:42 -0400 | [diff] [blame] | 391 | |
| 392 | [service_available] |
| 393 | # Whether or not cinder is expected to be available |
| 394 | cinder = True |
Matthew Treinish | faa340d | 2013-07-19 16:26:21 -0400 | [diff] [blame] | 395 | # Whether or not neutron is expected to be available |
| 396 | neutron = false |
Matthew Treinish | 853ae44 | 2013-07-19 16:36:07 -0400 | [diff] [blame] | 397 | # Whether or not glance is expected to be available |
| 398 | glance = True |
Matthew Treinish | 61e332b | 2013-07-19 16:42:31 -0400 | [diff] [blame] | 399 | # Whether or not swift is expected to be available |
| 400 | swift = True |
Matthew Treinish | 6b41e24 | 2013-07-19 16:49:28 -0400 | [diff] [blame] | 401 | # Whether or not nova is expected to be available |
| 402 | nova = True |
Matthew Treinish | a9d4388 | 2013-07-19 16:54:52 -0400 | [diff] [blame] | 403 | # Whether or not Heat is expected to be available |
| 404 | heat = false |
Julie Pichon | d101764 | 2013-07-24 16:37:23 +0100 | [diff] [blame] | 405 | # Whether or not horizon is expected to be available |
| 406 | horizon = True |
Marc Koderer | 32221b8e | 2013-08-23 13:57:50 +0200 | [diff] [blame] | 407 | |
| 408 | [stress] |
| 409 | # Maximum number of instances to create during test |
| 410 | max_instances = 32 |
| 411 | # Time (in seconds) between log file error checks |
| 412 | log_check_interval = 60 |
| 413 | # The default number of threads created while stress test |
Jenkins | e67416c | 2013-08-28 23:09:23 +0000 | [diff] [blame] | 414 | default_thread_number_per_action=4 |