Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 1 | [identity] |
| 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 = %IDENTITY_USE_SSL% |
| 9 | # This is the main host address of the authentication service API |
| 10 | host = %IDENTITY_HOST% |
| 11 | # Port that the authentication service API is running on |
| 12 | port = %IDENTITY_PORT% |
| 13 | # Version of the authentication service API (a string) |
| 14 | api_version = %IDENTITY_API_VERSION% |
| 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 = %IDENTITY_PATH% |
| 18 | # Should typically be left as keystone unless you have a non-Keystone |
| 19 | # authentication API service |
| 20 | strategy = %IDENTITY_STRATEGY% |
| 21 | |
| 22 | [compute] |
| 23 | # This section contains configuration options used when executing tests |
| 24 | # against the OpenStack Compute API. |
| 25 | |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 26 | # Allows test cases to create/destroy tenants and users. This option |
| 27 | # enables isolated test cases and better parallel execution, |
| 28 | # but also requires that OpenStack Identity API admin credentials |
| 29 | # are known. |
| 30 | allow_tenant_isolation = %COMPUTE_ALLOW_TENANT_ISOLATION% |
| 31 | |
Dan Smith | d6ff6b7 | 2012-08-23 10:29:41 -0700 | [diff] [blame] | 32 | # Allows test cases to create/destroy tenants and users. This option |
| 33 | # enables isolated test cases and better parallel execution, |
| 34 | # but also requires that OpenStack Identity API admin credentials |
| 35 | # are known. |
| 36 | allow_tenant_reuse = %COMPUTE_ALLOW_TENANT_REUSE% |
| 37 | |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 38 | # This should be the username of a user WITHOUT administrative privileges |
| 39 | username = %USERNAME% |
| 40 | # The above non-administrative user's password |
| 41 | password = %PASSWORD% |
| 42 | # The above non-administrative user's tenant name |
| 43 | tenant_name = %TENANT_NAME% |
| 44 | |
| 45 | # This should be the username of an alternate user WITHOUT |
| 46 | # administrative privileges |
| 47 | alt_username = %ALT_USERNAME% |
| 48 | # The above non-administrative user's password |
| 49 | alt_password = %ALT_PASSWORD% |
| 50 | # The above non-administrative user's tenant name |
| 51 | alt_tenant_name = %ALT_TENANT_NAME% |
| 52 | |
| 53 | # Reference data for tests. The ref and ref_alt should be |
| 54 | # distinct images/flavors. |
| 55 | image_ref = %IMAGE_ID% |
| 56 | image_ref_alt = %IMAGE_ID_ALT% |
| 57 | flavor_ref = %FLAVOR_REF% |
| 58 | flavor_ref_alt = %FLAVOR_REF_ALT% |
| 59 | |
| 60 | # 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] | 61 | # instance that is building. |
| 62 | build_interval = %COMPUTE_BUILD_INTERVAL% |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 63 | |
Rohit Karajgi | dd47d7e | 2012-07-31 04:11:01 -0700 | [diff] [blame] | 64 | # Number of seconds to time out on waiting for an instance |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 65 | # to build or reach an expected status |
Rohit Karajgi | dd47d7e | 2012-07-31 04:11:01 -0700 | [diff] [blame] | 66 | build_timeout = %COMPUTE_BUILD_TIMEOUT% |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 67 | |
| 68 | # The type of endpoint for a Compute API service. Unless you have a |
| 69 | # custom Keystone service catalog implementation, you probably want to leave |
| 70 | # this value as "compute" |
| 71 | catalog_type = %COMPUTE_CATALOG_TYPE% |
| 72 | |
| 73 | # Does the Compute API support creation of images? |
| 74 | create_image_enabled = %COMPUTE_CREATE_IMAGE_ENABLED% |
| 75 | |
| 76 | # For resize to work with libvirt/kvm, one of the following must be true: |
| 77 | # Single node: allow_resize_to_same_host=True must be set in nova.conf |
| 78 | # Cluster: the 'nova' user must have scp access between cluster nodes |
| 79 | resize_available = %COMPUTE_RESIZE_AVAILABLE% |
| 80 | |
David Kranz | f97d5fd | 2012-07-30 13:46:45 -0400 | [diff] [blame] | 81 | # Does the compute API support changing the admin password? |
| 82 | change_password_available = %COMPUTE_CHANGE_PASSWORD_AVAILABLE% |
| 83 | |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 84 | # Level to log Compute API request/response details. |
| 85 | log_level = %COMPUTE_LOG_LEVEL% |
| 86 | |
Jay Pipes | 051075a | 2012-04-28 17:39:37 -0400 | [diff] [blame] | 87 | # Whitebox options for compute. Whitebox options enable the |
| 88 | # whitebox test cases, which look at internal Nova database state, |
| 89 | # SSH into VMs to check instance state, etc. |
| 90 | |
| 91 | # Should we run whitebox tests for Compute? |
| 92 | whitebox_enabled = %COMPUTE_WHITEBOX_ENABLED% |
| 93 | |
| 94 | # Path of nova source directory |
| 95 | source_dir = %COMPUTE_SOURCE_DIR% |
| 96 | |
| 97 | # Path of nova configuration file |
| 98 | config_path = %COMPUTE_CONFIG_PATH% |
| 99 | |
| 100 | # Directory containing nova binaries such as nova-manage |
| 101 | bin_dir = %COMPUTE_BIN_DIR% |
| 102 | |
| 103 | # Path to a private key file for SSH access to remote hosts |
| 104 | path_to_private_key = %COMPUTE_PATH_TO_PRIVATE_KEY% |
| 105 | |
| 106 | # Connection string to the database of Compute service |
| 107 | db_uri = %COMPUTE_DB_URI% |
| 108 | |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 109 | [image] |
| 110 | # This section contains configuration options used when executing tests |
| 111 | # against the OpenStack Images API |
| 112 | |
Jay Pipes | ad6feca | 2012-04-30 15:10:18 -0400 | [diff] [blame] | 113 | # The type of endpoint for an Image API service. Unless you have a |
| 114 | # custom Keystone service catalog implementation, you probably want to leave |
| 115 | # this value as "image" |
| 116 | catalog_type = %IMAGE_CATALOG_TYPE% |
| 117 | |
| 118 | # The version of the OpenStack Images API to use |
| 119 | api_version = %IMAGE_API_VERSION% |
| 120 | |
| 121 | # This is the main host address of the Image API |
| 122 | host = %IMAGE_HOST% |
| 123 | |
| 124 | # Port that the Image API is running on |
| 125 | port = %IMAGE_PORT% |
| 126 | |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 127 | # This should be the username of a user WITHOUT administrative privileges |
| 128 | username = %USERNAME% |
| 129 | # The above non-administrative user's password |
| 130 | password = %PASSWORD% |
| 131 | # The above non-administrative user's tenant name |
| 132 | tenant_name = %TENANT_NAME% |
| 133 | |
| 134 | [compute-admin] |
| 135 | # This section contains configuration options for an administrative |
| 136 | # user of the Compute API. These options are used in tests that stress |
| 137 | # the admin-only parts of the Compute API |
| 138 | |
| 139 | # This should be the username of a user WITH administrative privileges |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 140 | username = %COMPUTE_ADMIN_USERNAME% |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 141 | # The above administrative user's password |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 142 | password = %COMPUTE_ADMIN_PASSWORD% |
Jay Pipes | 017e95c | 2012-04-04 16:16:06 -0400 | [diff] [blame] | 143 | # The above administrative user's tenant name |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 144 | tenant_name = %COMPUTE_ADMIN_TENANT_NAME% |
| 145 | |
| 146 | [identity-admin] |
| 147 | # This section contains configuration options for an administrative |
| 148 | # user of the Compute API. These options are used in tests that stress |
| 149 | # the admin-only parts of the Compute API |
| 150 | |
| 151 | # This should be the username of a user WITH administrative privileges |
| 152 | username = %IDENTITY_ADMIN_USERNAME% |
| 153 | # The above administrative user's password |
| 154 | password = %IDENTITY_ADMIN_PASSWORD% |
| 155 | # The above administrative user's tenant name |
| 156 | tenant_name = %IDENTITY_ADMIN_TENANT_NAME% |
Rohit Karajgi | dd47d7e | 2012-07-31 04:11:01 -0700 | [diff] [blame] | 157 | |
| 158 | [volume] |
| 159 | # This section contains the configuration options used when executing tests |
| 160 | # against the OpenStack Block Storage API service |
| 161 | |
| 162 | # The type of endpoint for a Cinder or Block Storage API service. |
| 163 | # Unless you have a custom Keystone service catalog implementation, you |
| 164 | # probably want to leave this value as "volume" |
| 165 | catalog_type = %VOLUME_CATALOG_TYPE% |
| 166 | # Number of seconds to wait while looping to check the status of a |
| 167 | # volume that is being made available |
| 168 | build_interval = %VOLUME_BUILD_INTERVAL% |
| 169 | # Number of seconds to time out on waiting for a volume |
| 170 | # to be available or reach an expected status |
| 171 | build_timeout = %VOLUME_BUILD_TIMEOUT% |
dwalleck | 5d73443 | 2012-10-04 01:11:47 -0500 | [diff] [blame^] | 172 | |
| 173 | [object-storage] |
| 174 | # This section contains configuration options used when executing tests |
| 175 | # against the OpenStack Object Storage API. |
| 176 | # This should be the username of a user WITHOUT administrative privileges |
| 177 | username = %USERNAME% |
| 178 | # The above non-administrative user's password |
| 179 | password = %PASSWORD% |
| 180 | # The above non-administrative user's tenant name |
| 181 | tenant_name = %TENANT_NAME% |
| 182 | |
| 183 | # The type of endpoint for an Object Storage API service. Unless you have a |
| 184 | # custom Keystone service catalog implementation, you probably want to leave |
| 185 | # this value as "object-store" |
| 186 | catalog_type = %OBJECT_CATALOG_TYPE% |