Fix the way to get tempest.conf in README.rst

We're using oslo-config-generator to generate a config file other than
copy the tempest.config.sample. We should update the description in
qucikstart of README.rst.

Change-Id: I5c7c3f9041da3e5c3840b440bba6e614c23fdf8a
Closes-Bug: #1481635
This commit is contained in:
Shuquan Huang
2015-08-05 09:39:58 +00:00
parent 4ec06d749a
commit 06c632b985

View File

@@ -41,11 +41,13 @@ To run Tempest, you first need to create a configuration file that
will tell Tempest where to find the various OpenStack services and will tell Tempest where to find the various OpenStack services and
other testing behavior switches. other testing behavior switches.
The easiest way to create a configuration file is to copy the sample The easiest way to create a configuration file is to generate a sample
one in the ``etc/`` directory :: in the ``etc/`` directory ::
$> cd $TEMPEST_ROOT_DIR $> cd $TEMPEST_ROOT_DIR
$> cp etc/tempest.conf.sample etc/tempest.conf $> oslo-config-generator --config-file \
tools/config/config-generator.tempest.conf \
--output-file etc/tempest.conf
After that, open up the ``etc/tempest.conf`` file and edit the After that, open up the ``etc/tempest.conf`` file and edit the
configuration variables to match valid data in your environment. configuration variables to match valid data in your environment.