Remove OVS with DPDK in metadata

Change-Id: Idb34b9af86d7f8fe49d93e7137dd505dbf7f7bbb
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
This commit is contained in:
Guo Ruijing 2017-03-14 00:33:18 +08:00
parent 24b1dd4464
commit a77ce89204
3 changed files with 9 additions and 19 deletions

View File

@ -7,7 +7,7 @@ Openvswitch plugin
Overview
--------
Fuel plugin fuel-plugin-ovs is developed to deploy OVS with NSH or OVS with DPDK
Fuel plugin fuel-plugin-ovs is developed to deploy OVS with NSH
Requirements
------------

View File

@ -7,26 +7,16 @@ cd $INSTALL_HOME
host=$1
nsh=$2
dpdk=$3
deb_arch=$(dpkg --print-architecture)
ovs="ovs-dpdk_${deb_arch}.tar.gz"
if [ $nsh = 'true' ]; then
ovs="ovs-nsh_${deb_arch}.tar.gz"
fi
apt-get install -y --allow-unauthenticated dkms
curl http://$host:8080/plugins/fuel-plugin-ovs-1.0/repositories/ubuntu/${ovs} | tar -xzv
dpkg -i openvswitch-datapath-dkms_*.deb
dpkg -i openvswitch-common_*.deb
dpkg -i openvswitch-switch_*.deb
dpkg -i python-openvswitch_*.deb
if [ $dpdk = 'true' ]
then
apt-get install -y --allow-unauthenticated dpdk dpdk-dev dpdk-dkms
dpkg -i openvswitch-switch-dpdk_*.deb
apt-get install -y --allow-unauthenticated dkms
curl http://$host:8080/plugins/fuel-plugin-ovs-1.0/repositories/ubuntu/${ovs} | tar -xzv
dpkg -i openvswitch-datapath-dkms_*.deb
dpkg -i openvswitch-common_*.deb
dpkg -i openvswitch-switch_*.deb
dpkg -i python-openvswitch_*.deb
fi
rm -rf $INSTALL_HOME

View File

@ -1,11 +1,11 @@
# Plugin name
name: fuel-plugin-ovs
# Human-readable name for your plugin
title: Install Open vSwitch with NSH or Open vSwitch with DPDK
title: Install Open vSwitch with NSH
# Plugin version
version: '1.0.0'
# Description
description: 'This plugin provides to deploy Open vSwitch with NSH or Open vSwitch with DPDK'
description: 'This plugin provides to deploy Open vSwitch with NSH'
# Required fuel version
fuel_version: ['10.0']
# Specify license of your plugin