Daryl Walleck | 587385b | 2012-03-03 13:00:26 -0600 | [diff] [blame] | 1 | [identity] |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame^] | 2 | # This section contains configuration options that a variety of Tempest |
| 3 | # test clients use when authenticating with different user/tenant |
| 4 | # combinations |
| 5 | |
| 6 | # Set to True if your test environment's Keystone authentication service should |
| 7 | # be accessed over HTTPS |
| 8 | use_ssl = False |
| 9 | # This is the main host address of the authentication service API |
| 10 | host = 127.0.0.1 |
| 11 | # Port that the authentication service API is running on |
| 12 | port = 5000 |
| 13 | # Version of the authentication service API (a string) |
| 14 | api_version = v2.0 |
| 15 | # Path to the authentication service tokens resource (do not modify unless you |
| 16 | # have a custom authentication API and are not using Keystone) |
| 17 | path = tokens |
| 18 | # Should typically be left as keystone unless you have a non-Keystone |
| 19 | # authentication API service |
| 20 | strategy = keystone |
Daryl Walleck | 587385b | 2012-03-03 13:00:26 -0600 | [diff] [blame] | 21 | |
| 22 | [compute] |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame^] | 23 | # This section contains configuration options used when executing tests |
| 24 | # against the OpenStack Compute API. |
| 25 | |
| 26 | # This should be the username of a user WITHOUT administrative privileges |
| 27 | username = {$USERNAME} |
| 28 | # The above non-administrative user's password |
| 29 | password = {$PASSWORD} |
| 30 | # The above non-administrative user's tenant name |
| 31 | tenant_name = {$TENANT_NAME} |
| 32 | |
| 33 | # This should be the username of an alternate user WITHOUT |
| 34 | # administrative privileges |
| 35 | alt_username = {$ALT_USERNAME} |
| 36 | # The above non-administrative user's password |
| 37 | alt_password = {$ALT_PASSWORD} |
| 38 | # The above non-administrative user's tenant name |
| 39 | alt_tenant_name = {$ALT_TENANT_NAME} |
| 40 | |
Daryl Walleck | 587385b | 2012-03-03 13:00:26 -0600 | [diff] [blame] | 41 | # Reference data for tests. The ref and ref_alt should be |
| 42 | # distinct images/flavors. |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame^] | 43 | image_ref = {$IMAGE_ID} |
| 44 | image_ref_alt = {$IMAGE_ID_ALT} |
| 45 | flavor_ref = 1 |
| 46 | flavor_ref_alt = 2 |
| 47 | |
| 48 | # Number of seconds to wait while looping to check the status of an |
| 49 | # instance or volume that is building. |
| 50 | build_interval = 10 |
| 51 | |
| 52 | # Number of seconds to time out on waiting for an instance or volume |
| 53 | # to build or reach an expected status |
| 54 | build_timeout = 600 |
| 55 | |
| 56 | # The type of endpoint for a Compute API service. Unless you have a |
| 57 | # custom Keystone service catalog implementation, you probably want to leave |
| 58 | # this value as "compute" |
| 59 | catalog_type = compute |
| 60 | |
| 61 | # Does the Compute API support creation of images? |
| 62 | create_image_enabled = true |
| 63 | |
David Kranz | 30fe84a | 2012-03-20 16:25:47 -0400 | [diff] [blame] | 64 | # For resize to work with libvirt/kvm, one of the following must be true: |
| 65 | # Single node: allow_resize_to_same_host=True must be set in nova.conf |
| 66 | # Cluster: the 'nova' user must have scp access between cluster nodes |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame^] | 67 | resize_available = true |
Daryl Walleck | e5b83d4 | 2011-11-10 14:39:02 -0600 | [diff] [blame] | 68 | |
Eoghan Glynn | 4b10c7c | 2012-03-01 13:13:35 -0500 | [diff] [blame] | 69 | [image] |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame^] | 70 | # This section contains configuration options used when executing tests |
| 71 | # against the OpenStack Images API |
| 72 | |
| 73 | # This should be the username of a user WITHOUT administrative privileges |
| 74 | username = {$USERNAME} |
| 75 | # The above non-administrative user's password |
| 76 | password = {$PASSWORD} |
| 77 | # The above non-administrative user's tenant name |
| 78 | tenant_name = {$TENANT_NAME} |
| 79 | |
| 80 | [compute-admin] |
| 81 | # This section contains configuration options for an administrative |
| 82 | # user of the Compute API. These options are used in tests that stress |
| 83 | # the admin-only parts of the Compute API |
| 84 | |
| 85 | # This should be the username of a user WITH administrative privileges |
| 86 | username = {$ADMIN_USERNAME} |
| 87 | # The above administrative user's password |
| 88 | password = {$ADMIN_PASSWORD} |
| 89 | # The above administrative user's tenant name |
| 90 | tenant_name = {$ADMIN_TENANT_NAME} |