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