summaryrefslogtreecommitdiffstats
path: root/fuel-plugin-vsperf/vagrant/Vagrantfile
diff options
context:
space:
mode:
authorGuo Ruijing <ruijing.guo@intel.com>2017-06-22 08:42:54 -0700
committerGuo Ruijing <ruijing.guo@intel.com>2017-06-22 08:43:47 -0700
commit16f7eb21ac16ea0f1ba82516a8d4b75c4ede1519 (patch)
treeeacf7b3c5d67df32f09dd94df3a9d56e2fc96caf /fuel-plugin-vsperf/vagrant/Vagrantfile
parent6da87d98f88ac23aa379369d573bbd1a8a1fd7b7 (diff)
cleanup: remove fuel plugin since fuel@opnfv uses mcp
Change-Id: Ibe2028b01c38fa545e72a00a7ef47103d1112b82 Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'fuel-plugin-vsperf/vagrant/Vagrantfile')
-rw-r--r--fuel-plugin-vsperf/vagrant/Vagrantfile28
1 files changed, 0 insertions, 28 deletions
diff --git a/fuel-plugin-vsperf/vagrant/Vagrantfile b/fuel-plugin-vsperf/vagrant/Vagrantfile
deleted file mode 100644
index 78128e8b..00000000
--- a/fuel-plugin-vsperf/vagrant/Vagrantfile
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright (c) 2016-2017 Intel corporation.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-
-# # -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
-VAGRANTFILE_API_VERSION = "2"
-
-Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
-
- config.vm.box = "trusty-server-cloudimg-amd64"
- config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
-
- config.vm.define "fuel" do | h |
- h.vm.host_name = "fuel"
- h.vm.provision :shell, :inline => "/vagrant/build_fuel_plugin.sh"
- h.vm.synced_folder "../..", "/vswitchperf"
- h.vm.provider :virtualbox do |v|
- v.customize ["modifyvm", :id, "--memory", 4096]
- v.customize ["modifyvm", :id, "--cpus", 4]
- end
- end
-end