blob: 25d8b091d7c721cbd6a62dd877e0b5dbce65acf4 [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
Jay Pipesf38eaac2012-06-21 13:37:35 -040030# Allows test cases to create/destroy tenants and users. This option
31# enables isolated test cases and better parallel execution,
32# but also requires that OpenStack Identity API admin credentials
33# are known.
34allow_tenant_isolation = true
35
Jay Pipes3f981df2012-03-27 18:59:44 -040036# This should be the username of a user WITHOUT administrative privileges
Jay Pipesf38eaac2012-06-21 13:37:35 -040037username = demo
Jay Pipes3f981df2012-03-27 18:59:44 -040038# The above non-administrative user's password
Jay Pipesf38eaac2012-06-21 13:37:35 -040039password = pass
Jay Pipes3f981df2012-03-27 18:59:44 -040040# The above non-administrative user's tenant name
Jay Pipesf38eaac2012-06-21 13:37:35 -040041tenant_name = demo
Jay Pipes3f981df2012-03-27 18:59:44 -040042
43# This should be the username of an alternate user WITHOUT
44# administrative privileges
Jay Pipesf38eaac2012-06-21 13:37:35 -040045alt_username = alt_demo
Jay Pipes3f981df2012-03-27 18:59:44 -040046# The above non-administrative user's password
Jay Pipesf38eaac2012-06-21 13:37:35 -040047alt_password = pass
Jay Pipes3f981df2012-03-27 18:59:44 -040048# The above non-administrative user's tenant name
Jay Pipesf38eaac2012-06-21 13:37:35 -040049alt_tenant_name = alt_demo
Jay Pipes3f981df2012-03-27 18:59:44 -040050
Daryl Walleck587385b2012-03-03 13:00:26 -060051# Reference data for tests. The ref and ref_alt should be
52# distinct images/flavors.
Jay Pipes3f981df2012-03-27 18:59:44 -040053image_ref = {$IMAGE_ID}
54image_ref_alt = {$IMAGE_ID_ALT}
55flavor_ref = 1
56flavor_ref_alt = 2
57
58# Number of seconds to wait while looping to check the status of an
59# instance or volume that is building.
60build_interval = 10
61
62# Number of seconds to time out on waiting for an instance or volume
63# to build or reach an expected status
64build_timeout = 600
65
Daryl Walleck6b9b2882012-04-08 21:43:39 -050066# Run additional tests that use SSH for instance validation?
67# This requires the instances be routable from the host
68# executing the tests
69run_ssh = false
70
71# Name of a user used to authenticated to an instance
72ssh_user = {$SSH_USER}
73
74# Network id used for SSH (public, private, etc)
75network_for_ssh = {$SSH_NETWORK}
76
77# IP version of the address used for SSH
78ip_version_for_ssh = {$SSH_IP_VERSION}
79
80# Number of seconds to wait to authenticate to an instance
81ssh_timeout = 300
82
Jay Pipes3f981df2012-03-27 18:59:44 -040083# The type of endpoint for a Compute API service. Unless you have a
84# custom Keystone service catalog implementation, you probably want to leave
85# this value as "compute"
86catalog_type = compute
87
88# Does the Compute API support creation of images?
89create_image_enabled = true
90
David Kranz30fe84a2012-03-20 16:25:47 -040091# For resize to work with libvirt/kvm, one of the following must be true:
92# Single node: allow_resize_to_same_host=True must be set in nova.conf
93# Cluster: the 'nova' user must have scp access between cluster nodes
Jay Pipes3f981df2012-03-27 18:59:44 -040094resize_available = true
Daryl Wallecke5b83d42011-11-10 14:39:02 -060095
David Kranz180fed12012-03-27 14:31:29 -040096# Level to log Compute API request/response details.
97log_level = ERROR
98
Eoghan Glynn4b10c7c2012-03-01 13:13:35 -050099[image]
Jay Pipes3f981df2012-03-27 18:59:44 -0400100# This section contains configuration options used when executing tests
101# against the OpenStack Images API
102
Jay Pipesad6feca2012-04-30 15:10:18 -0400103# The type of endpoint for an Image API service. Unless you have a
104# custom Keystone service catalog implementation, you probably want to leave
105# this value as "image"
106catalog_type = image
107
108# The version of the OpenStack Images API to use
109api_version = 1
110
111# This is the main host address of the Image API
112host = 127.0.0.1
113
114# Port that the Image API is running on
115port = 9292
116
Jay Pipes3f981df2012-03-27 18:59:44 -0400117# This should be the username of a user WITHOUT administrative privileges
Jay Pipesf38eaac2012-06-21 13:37:35 -0400118username = demo
Jay Pipes3f981df2012-03-27 18:59:44 -0400119# The above non-administrative user's password
Jay Pipesf38eaac2012-06-21 13:37:35 -0400120password = pass
Jay Pipes3f981df2012-03-27 18:59:44 -0400121# The above non-administrative user's tenant name
Jay Pipesf38eaac2012-06-21 13:37:35 -0400122tenant_name = demo
Jay Pipes3f981df2012-03-27 18:59:44 -0400123
124[compute-admin]
125# This section contains configuration options for an administrative
126# user of the Compute API. These options are used in tests that stress
127# the admin-only parts of the Compute API
128
129# This should be the username of a user WITH administrative privileges
Jay Pipesf38eaac2012-06-21 13:37:35 -0400130username = admin
Jay Pipes3f981df2012-03-27 18:59:44 -0400131# The above administrative user's password
Jay Pipesf38eaac2012-06-21 13:37:35 -0400132password = pass
Jay Pipes3f981df2012-03-27 18:59:44 -0400133# The above administrative user's tenant name
Jay Pipesf38eaac2012-06-21 13:37:35 -0400134tenant_name = admin
Unmesh Gurjar44986832012-05-08 19:57:10 +0530135
136[network]
137# This section contains configuration options used when executing tests
138# against the OpenStack Network API.
139api_version = v1.1
140catalog_type = network
Jay Pipesf38eaac2012-06-21 13:37:35 -0400141
142[identity-admin]
143# This section contains configuration options for an administrative
144# user of the Compute API. These options are used in tests that stress
145# the admin-only parts of the Compute API
146
147# This should be the username of a user WITH administrative privileges
148username = admin
149# The above administrative user's password
150password = pass
151# The above administrative user's tenant name
152tenant_name = admin