blob: ac1664a96a0d6233364b45e781f89d606ee92cab [file] [log] [blame]
Jay Pipes017e95c2012-04-04 16:16:06 -04001[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
8use_ssl = %IDENTITY_USE_SSL%
9# This is the main host address of the authentication service API
10host = %IDENTITY_HOST%
11# Port that the authentication service API is running on
12port = %IDENTITY_PORT%
13# Version of the authentication service API (a string)
14api_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)
17path = %IDENTITY_PATH%
18# Should typically be left as keystone unless you have a non-Keystone
19# authentication API service
20strategy = %IDENTITY_STRATEGY%
21
22[compute]
23# This section contains configuration options used when executing tests
24# against the OpenStack Compute API.
25
Jay Pipesf38eaac2012-06-21 13:37:35 -040026# 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.
30allow_tenant_isolation = %COMPUTE_ALLOW_TENANT_ISOLATION%
31
Dan Smithd6ff6b72012-08-23 10:29:41 -070032# 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.
36allow_tenant_reuse = %COMPUTE_ALLOW_TENANT_REUSE%
37
Jay Pipes017e95c2012-04-04 16:16:06 -040038# This should be the username of a user WITHOUT administrative privileges
39username = %USERNAME%
40# The above non-administrative user's password
41password = %PASSWORD%
42# The above non-administrative user's tenant name
43tenant_name = %TENANT_NAME%
44
45# This should be the username of an alternate user WITHOUT
46# administrative privileges
47alt_username = %ALT_USERNAME%
48# The above non-administrative user's password
49alt_password = %ALT_PASSWORD%
50# The above non-administrative user's tenant name
51alt_tenant_name = %ALT_TENANT_NAME%
52
53# Reference data for tests. The ref and ref_alt should be
54# distinct images/flavors.
55image_ref = %IMAGE_ID%
56image_ref_alt = %IMAGE_ID_ALT%
57flavor_ref = %FLAVOR_REF%
58flavor_ref_alt = %FLAVOR_REF_ALT%
59
60# Number of seconds to wait while looping to check the status of an
61# instance or volume that is building.
62build_interval = %BUILD_INTERVAL%
63
64# Number of seconds to time out on waiting for an instance or volume
65# to build or reach an expected status
66build_timeout = %BUILD_TIMEOUT%
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"
71catalog_type = %COMPUTE_CATALOG_TYPE%
72
73# Does the Compute API support creation of images?
74create_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
79resize_available = %COMPUTE_RESIZE_AVAILABLE%
80
David Kranzf97d5fd2012-07-30 13:46:45 -040081# Does the compute API support changing the admin password?
82change_password_available = %COMPUTE_CHANGE_PASSWORD_AVAILABLE%
83
Jay Pipes017e95c2012-04-04 16:16:06 -040084# Level to log Compute API request/response details.
85log_level = %COMPUTE_LOG_LEVEL%
86
Jay Pipes051075a2012-04-28 17:39:37 -040087# 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?
92whitebox_enabled = %COMPUTE_WHITEBOX_ENABLED%
93
94# Path of nova source directory
95source_dir = %COMPUTE_SOURCE_DIR%
96
97# Path of nova configuration file
98config_path = %COMPUTE_CONFIG_PATH%
99
100# Directory containing nova binaries such as nova-manage
101bin_dir = %COMPUTE_BIN_DIR%
102
103# Path to a private key file for SSH access to remote hosts
104path_to_private_key = %COMPUTE_PATH_TO_PRIVATE_KEY%
105
106# Connection string to the database of Compute service
107db_uri = %COMPUTE_DB_URI%
108
Jay Pipes017e95c2012-04-04 16:16:06 -0400109[image]
110# This section contains configuration options used when executing tests
111# against the OpenStack Images API
112
Jay Pipesad6feca2012-04-30 15:10:18 -0400113# 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"
116catalog_type = %IMAGE_CATALOG_TYPE%
117
118# The version of the OpenStack Images API to use
119api_version = %IMAGE_API_VERSION%
120
121# This is the main host address of the Image API
122host = %IMAGE_HOST%
123
124# Port that the Image API is running on
125port = %IMAGE_PORT%
126
Jay Pipes017e95c2012-04-04 16:16:06 -0400127# This should be the username of a user WITHOUT administrative privileges
128username = %USERNAME%
129# The above non-administrative user's password
130password = %PASSWORD%
131# The above non-administrative user's tenant name
132tenant_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 Pipesf38eaac2012-06-21 13:37:35 -0400140username = %COMPUTE_ADMIN_USERNAME%
Jay Pipes017e95c2012-04-04 16:16:06 -0400141# The above administrative user's password
Jay Pipesf38eaac2012-06-21 13:37:35 -0400142password = %COMPUTE_ADMIN_PASSWORD%
Jay Pipes017e95c2012-04-04 16:16:06 -0400143# The above administrative user's tenant name
Jay Pipesf38eaac2012-06-21 13:37:35 -0400144tenant_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
152username = %IDENTITY_ADMIN_USERNAME%
153# The above administrative user's password
154password = %IDENTITY_ADMIN_PASSWORD%
155# The above administrative user's tenant name
156tenant_name = %IDENTITY_ADMIN_TENANT_NAME%