blob: 31dd902837d6c3ae8d8d51bc94a55338d6e37bca [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 Kranzf97d5fd2012-07-30 13:46:45 -040096# Does the compute API support changing the admin password?
97change_password_available=true
98
David Kranz180fed12012-03-27 14:31:29 -040099# Level to log Compute API request/response details.
100log_level = ERROR
101
Eoghan Glynn4b10c7c2012-03-01 13:13:35 -0500102[image]
Jay Pipes3f981df2012-03-27 18:59:44 -0400103# This section contains configuration options used when executing tests
104# against the OpenStack Images API
105
Jay Pipesad6feca2012-04-30 15:10:18 -0400106# The type of endpoint for an Image API service. Unless you have a
107# custom Keystone service catalog implementation, you probably want to leave
108# this value as "image"
109catalog_type = image
110
111# The version of the OpenStack Images API to use
112api_version = 1
113
114# This is the main host address of the Image API
115host = 127.0.0.1
116
117# Port that the Image API is running on
118port = 9292
119
Jay Pipes3f981df2012-03-27 18:59:44 -0400120# This should be the username of a user WITHOUT administrative privileges
Jay Pipesf38eaac2012-06-21 13:37:35 -0400121username = demo
Jay Pipes3f981df2012-03-27 18:59:44 -0400122# The above non-administrative user's password
Jay Pipesf38eaac2012-06-21 13:37:35 -0400123password = pass
Jay Pipes3f981df2012-03-27 18:59:44 -0400124# The above non-administrative user's tenant name
Jay Pipesf38eaac2012-06-21 13:37:35 -0400125tenant_name = demo
Jay Pipes3f981df2012-03-27 18:59:44 -0400126
127[compute-admin]
128# This section contains configuration options for an administrative
129# user of the Compute API. These options are used in tests that stress
130# the admin-only parts of the Compute API
131
132# This should be the username of a user WITH administrative privileges
Jay Pipesf38eaac2012-06-21 13:37:35 -0400133username = admin
Jay Pipes3f981df2012-03-27 18:59:44 -0400134# The above administrative user's password
Jay Pipesf38eaac2012-06-21 13:37:35 -0400135password = pass
Jay Pipes3f981df2012-03-27 18:59:44 -0400136# The above administrative user's tenant name
Jay Pipesf38eaac2012-06-21 13:37:35 -0400137tenant_name = admin
Unmesh Gurjar44986832012-05-08 19:57:10 +0530138
139[network]
140# This section contains configuration options used when executing tests
141# against the OpenStack Network API.
142api_version = v1.1
143catalog_type = network
Jay Pipesf38eaac2012-06-21 13:37:35 -0400144
145[identity-admin]
146# This section contains configuration options for an administrative
147# user of the Compute API. These options are used in tests that stress
148# the admin-only parts of the Compute API
149
150# This should be the username of a user WITH administrative privileges
151username = admin
152# The above administrative user's password
153password = pass
154# The above administrative user's tenant name
155tenant_name = admin