aboutsummaryrefslogtreecommitdiffstats
path: root/devstack/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'devstack/README.md')
-rw-r--r--devstack/README.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/devstack/README.md b/devstack/README.md
new file mode 100644
index 0000000..4093e5c
--- /dev/null
+++ b/devstack/README.md
@@ -0,0 +1,31 @@
+This directory contains the networking-sfc devstack plugin. To
+configure the networking sfc, in the [[local|localrc]] section,
+you will need to enable the networking-sfc devstack plugin by
+ editing the [[local|localrc]] section of your local.conf file.
+
+1) Enable the plugin
+
+To enable the plugin, add a line of the form:
+
+ enable_plugin networking-sfc <GITURL> [GITREF]
+
+where
+
+ <GITURL> is the URL of a networking-sfc repository
+ [GITREF] is an optional git ref (branch/ref/tag). The default is
+ master.
+
+For example
+
+ If you have already cloned the networking-sfc repository (which is
+ useful when testing unmerged changes)
+
+ enable_plugin networking-sfc /opt/stack/networking-sfc
+
+ Or, if you want to pull the networking-sfc repository from Github
+ and use a particular branch (for example Liberty, here)
+
+ enable_plugin networking-sfc git://git.openstack.org/openstack/networking-sfc stable/liberty
+
+For more information, see the "Externally Hosted Plugins" section of
+http://docs.openstack.org/developer/devstack/plugins.html.