From 85499ecb3034bd1a7ccf228ca0880456d4d46c71 Mon Sep 17 00:00:00 2001 From: lfourie Date: Tue, 28 Feb 2017 10:40:28 -0800 Subject: Add VNFFG release documentation Change-Id: Ib72fadba154e054c8c819f96d0ac5674fa7967fe Signed-off-by: lfourie --- devstack/README.md | 31 ------------------------------- devstack/plugin.sh | 25 ------------------------- devstack/settings | 8 -------- 3 files changed, 64 deletions(-) delete mode 100644 devstack/README.md delete mode 100644 devstack/plugin.sh delete mode 100644 devstack/settings (limited to 'devstack') diff --git a/devstack/README.md b/devstack/README.md deleted file mode 100644 index 4093e5c..0000000 --- a/devstack/README.md +++ /dev/null @@ -1,31 +0,0 @@ -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 [GITREF] - -where - - 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. diff --git a/devstack/plugin.sh b/devstack/plugin.sh deleted file mode 100644 index 04a87bb..0000000 --- a/devstack/plugin.sh +++ /dev/null @@ -1,25 +0,0 @@ -# function definitions for networking-sfc devstack plugin - -function networking_sfc_install { - setup_develop $NETWORKING_SFC_DIR -} - -function networking_sfc_configure_common { - _neutron_service_plugin_class_add $NEUTRON_FLOWCLASSIFIER_PLUGIN - _neutron_service_plugin_class_add $NEUTRON_SFC_PLUGIN - iniset $NEUTRON_CONF DEFAULT service_plugins $Q_SERVICE_PLUGIN_CLASSES - iniadd $NEUTRON_CONF sfc drivers $NEUTRON_SFC_DRIVERS - _neutron_deploy_rootwrap_filters $NETWORKING_SFC_DIR - neutron-db-manage --config-file $NEUTRON_CONF --config-file /$Q_PLUGIN_CONF_FILE --subproject networking-sfc upgrade head -} - - -if [[ "$1" == "stack" && "$2" == "install" ]]; then - # Perform installation of service source - echo_summary "Installing networking-sfc" - networking_sfc_install - -elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then - echo_summary "Configuring networking-sfc" - networking_sfc_configure_common -fi diff --git a/devstack/settings b/devstack/settings deleted file mode 100644 index 6fe3581..0000000 --- a/devstack/settings +++ /dev/null @@ -1,8 +0,0 @@ -# settings for networking-sfc devstack plugin - -NETWORKING_SFC_DIR=${NETWORKING_SFC_DIR:-"$DEST/networking-sfc"} - -NEUTRON_FLOWCLASSIFIER_PLUGIN=${NEUTRON_FLOWCLASSIFIER_PLUGIN:="networking_sfc.services.flowclassifier.plugin.FlowClassifierPlugin"} -NEUTRON_SFC_PLUGIN=${NEUTRON_SFC_PLUGIN:-"networking_sfc.services.sfc.plugin.SfcPlugin"} - -NEUTRON_SFC_DRIVERS=${NEUTRON_SFC_DRIVERS:-"ovs"} -- cgit 1.2.3-korg