a1c89ba75c
This is incorrect url in README.rst example case: enable_plugin freezer https://git.openstack.org/openstack/freezer.git master change the url to: https://git.openstack.org/openstack/freezer Change-Id: I599af680102f858bf52460a0e2d400b9974616d1
37 lines
916 B
ReStructuredText
37 lines
916 B
ReStructuredText
============================
|
|
Enabling Freezer in Devstack
|
|
============================
|
|
|
|
This directory contains the Freezer DevStack plugin.
|
|
|
|
Download Devstack::
|
|
|
|
git clone https://git.openstack.org/openstack-dev/devstack
|
|
cd devstack
|
|
|
|
To configure the Freezer scheduler and agent with DevStack, you will need to
|
|
enable this plugin by adding one line to the [[local|localrc]]
|
|
section of your ``local.conf`` file.
|
|
|
|
To enable the plugin, add a line of the form::
|
|
|
|
[[local|localrc]]
|
|
enable_plugin freezer <GITURL> [GITREF]
|
|
|
|
where::
|
|
|
|
<GITURL> is the URL of a freezer repository
|
|
[GITREF] is an optional git ref (branch/ref/tag). The default is master.
|
|
|
|
For example::
|
|
|
|
enable_plugin freezer https://git.openstack.org/openstack/freezer master
|
|
|
|
Then run devstack normally::
|
|
|
|
cd $DEVICE_DIR
|
|
./stack.sh
|
|
|
|
For more information, see:
|
|
http://docs.openstack.org/developer/devstack/plugins.html
|