blob: c7c403cd0fbc369c147c3ed55ca2654baee34200 [file] [log] [blame]
Daryl Walleck587385b2012-03-03 13:00:26 -06001[identity]
Jay Pipes3f981df2012-03-27 18:59:44 -04002# This section contains configuration options that a variety of Tempest
3# test clients use when authenticating with different user/tenant
4# combinations
5
chris fattarsi8ed39ac2012-04-30 14:11:27 -07006# 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"
9catalog_type = identity
Jay Pipes3f981df2012-03-27 18:59:44 -040010# Set to True if your test environment's Keystone authentication service should
11# be accessed over HTTPS
12use_ssl = False
13# This is the main host address of the authentication service API
14host = 127.0.0.1
15# Port that the authentication service API is running on
16port = 5000
17# Version of the authentication service API (a string)
18api_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)
21path = tokens
22# Should typically be left as keystone unless you have a non-Keystone
23# authentication API service
24strategy = keystone
Daryl Walleck587385b2012-03-03 13:00:26 -060025
26[compute]
Jay Pipes3f981df2012-03-27 18:59:44 -040027# 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
31username = {$USERNAME}
32# The above non-administrative user's password
33password = {$PASSWORD}
34# The above non-administrative user's tenant name
35tenant_name = {$TENANT_NAME}
36
37# This should be the username of an alternate user WITHOUT
38# administrative privileges
39alt_username = {$ALT_USERNAME}
40# The above non-administrative user's password
41alt_password = {$ALT_PASSWORD}
42# The above non-administrative user's tenant name
43alt_tenant_name = {$ALT_TENANT_NAME}
44
Daryl Walleck587385b2012-03-03 13:00:26 -060045# Reference data for tests. The ref and ref_alt should be
46# distinct images/flavors.
Jay Pipes3f981df2012-03-27 18:59:44 -040047image_ref = {$IMAGE_ID}
48image_ref_alt = {$IMAGE_ID_ALT}
49flavor_ref = 1
50flavor_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.
54build_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
58build_timeout = 600
59
Daryl Walleck6b9b2882012-04-08 21:43:39 -050060# Run additional tests that use SSH for instance validation?
61# This requires the instances be routable from the host
62# executing the tests
63run_ssh = false
64
65# Name of a user used to authenticated to an instance
66ssh_user = {$SSH_USER}
67
68# Network id used for SSH (public, private, etc)
69network_for_ssh = {$SSH_NETWORK}
70
71# IP version of the address used for SSH
72ip_version_for_ssh = {$SSH_IP_VERSION}
73
74# Number of seconds to wait to authenticate to an instance
75ssh_timeout = 300
76
Jay Pipes3f981df2012-03-27 18:59:44 -040077# The type of endpoint for a Compute API service. Unless you have a
78# custom Keystone service catalog implementation, you probably want to leave
79# this value as "compute"
80catalog_type = compute
81
82# Does the Compute API support creation of images?
83create_image_enabled = true
84
David Kranz30fe84a2012-03-20 16:25:47 -040085# For resize to work with libvirt/kvm, one of the following must be true:
86# Single node: allow_resize_to_same_host=True must be set in nova.conf
87# Cluster: the 'nova' user must have scp access between cluster nodes
Jay Pipes3f981df2012-03-27 18:59:44 -040088resize_available = true
Daryl Wallecke5b83d42011-11-10 14:39:02 -060089
David Kranz180fed12012-03-27 14:31:29 -040090# Level to log Compute API request/response details.
91log_level = ERROR
92
Eoghan Glynn4b10c7c2012-03-01 13:13:35 -050093[image]
Jay Pipes3f981df2012-03-27 18:59:44 -040094# This section contains configuration options used when executing tests
95# against the OpenStack Images API
96
Jay Pipesad6feca2012-04-30 15:10:18 -040097# The type of endpoint for an Image API service. Unless you have a
98# custom Keystone service catalog implementation, you probably want to leave
99# this value as "image"
100catalog_type = image
101
102# The version of the OpenStack Images API to use
103api_version = 1
104
105# This is the main host address of the Image API
106host = 127.0.0.1
107
108# Port that the Image API is running on
109port = 9292
110
Jay Pipes3f981df2012-03-27 18:59:44 -0400111# This should be the username of a user WITHOUT administrative privileges
112username = {$USERNAME}
113# The above non-administrative user's password
114password = {$PASSWORD}
115# The above non-administrative user's tenant name
116tenant_name = {$TENANT_NAME}
117
118[compute-admin]
119# This section contains configuration options for an administrative
120# user of the Compute API. These options are used in tests that stress
121# the admin-only parts of the Compute API
122
123# This should be the username of a user WITH administrative privileges
124username = {$ADMIN_USERNAME}
125# The above administrative user's password
126password = {$ADMIN_PASSWORD}
127# The above administrative user's tenant name
128tenant_name = {$ADMIN_TENANT_NAME}