blob: fcd642480625409375e371afedc9114354b2a144 [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
26# This should be the username of a user WITHOUT administrative privileges
27username = %USERNAME%
28# The above non-administrative user's password
29password = %PASSWORD%
30# The above non-administrative user's tenant name
31tenant_name = %TENANT_NAME%
32
33# This should be the username of an alternate user WITHOUT
34# administrative privileges
35alt_username = %ALT_USERNAME%
36# The above non-administrative user's password
37alt_password = %ALT_PASSWORD%
38# The above non-administrative user's tenant name
39alt_tenant_name = %ALT_TENANT_NAME%
40
41# Reference data for tests. The ref and ref_alt should be
42# distinct images/flavors.
43image_ref = %IMAGE_ID%
44image_ref_alt = %IMAGE_ID_ALT%
45flavor_ref = %FLAVOR_REF%
46flavor_ref_alt = %FLAVOR_REF_ALT%
47
48# Number of seconds to wait while looping to check the status of an
49# instance or volume that is building.
50build_interval = %BUILD_INTERVAL%
51
52# Number of seconds to time out on waiting for an instance or volume
53# to build or reach an expected status
54build_timeout = %BUILD_TIMEOUT%
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"
59catalog_type = %COMPUTE_CATALOG_TYPE%
60
61# Does the Compute API support creation of images?
62create_image_enabled = %COMPUTE_CREATE_IMAGE_ENABLED%
63
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
67resize_available = %COMPUTE_RESIZE_AVAILABLE%
68
69# Level to log Compute API request/response details.
70log_level = %COMPUTE_LOG_LEVEL%
71
72[image]
73# This section contains configuration options used when executing tests
74# against the OpenStack Images API
75
Jay Pipesad6feca2012-04-30 15:10:18 -040076# The type of endpoint for an Image API service. Unless you have a
77# custom Keystone service catalog implementation, you probably want to leave
78# this value as "image"
79catalog_type = %IMAGE_CATALOG_TYPE%
80
81# The version of the OpenStack Images API to use
82api_version = %IMAGE_API_VERSION%
83
84# This is the main host address of the Image API
85host = %IMAGE_HOST%
86
87# Port that the Image API is running on
88port = %IMAGE_PORT%
89
Jay Pipes017e95c2012-04-04 16:16:06 -040090# This should be the username of a user WITHOUT administrative privileges
91username = %USERNAME%
92# The above non-administrative user's password
93password = %PASSWORD%
94# The above non-administrative user's tenant name
95tenant_name = %TENANT_NAME%
96
97[compute-admin]
98# This section contains configuration options for an administrative
99# user of the Compute API. These options are used in tests that stress
100# the admin-only parts of the Compute API
101
102# This should be the username of a user WITH administrative privileges
103username = %ADMIN_USERNAME%
104# The above administrative user's password
105password = %ADMIN_PASSWORD%
106# The above administrative user's tenant name
107tenant_name = %ADMIN_TENANT_NAME%