Merge "Vagrant: Implement plugin check and simpler config"

This commit is contained in:
Jenkins 2017-06-21 16:33:35 +00:00 committed by Gerrit Code Review
commit bdb6711903

75
Vagrantfile vendored
View File

@ -10,52 +10,53 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# Verify whether required plugins are installed.
required_plugins = [ "vagrant-disksize" ]
required_plugins.each do |plugin|
if not Vagrant.has_plugin?(plugin)
raise "The vagrant plugin #{plugin} is required. Please run `vagrant plugin install #{plugin}`"
end
end
Vagrant.configure(2) do |config| Vagrant.configure(2) do |config|
# Configure all VM specs.
config.vm.provider "virtualbox" do |v|
v.memory = 8192
v.cpus = 4
end
# Configure the disk size.
disk_size = "60GB"
config.vm.define "ubuntu1604" do |xenial| config.vm.define "ubuntu1604" do |xenial|
xenial.vm.box = "ubuntu/xenial64" xenial.vm.box = "ubuntu/xenial64"
# Expand the disk to 60GB. You'll need xenial.disksize.size = disk_size
# the plugin disksize. Please run: config.vm.provision "shell",
# vagrant plugin install vagrant-disksize privileged: true,
xenial.disksize.size = '60GB' inline: <<-SHELL
xenial.vm.provider "virtualbox" do |v| cd /vagrant
./scripts/gate-check-commit.sh
v.memory = 8192
v.cpus = 4
# Now we can execute the build
config.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./scripts/gate-check-commit.sh
SHELL SHELL
end
end end
config.vm.define "centos7" do |centos7| config.vm.define "centos7" do |centos7|
centos7.vm.box = "centos/7" centos7.vm.box = "centos/7"
centos7.disksize.size = '60GB' centos7.disksize.size = disk_size
centos7.vm.provider "virtualbox" do |v| # The CentOS build does not have growroot, so we
# have to do it ourselves.
v.memory = 8192 config.vm.provision "shell",
v.cpus = 4 privileged: true,
inline: <<-SHELL
# Now we can execute the build cd /vagrant
config.vm.provision "shell", inline: <<-SHELL PART_START=$(parted /dev/sda --script unit MB print | awk '/^ 3 / {print $3}')
sudo su - parted /dev/sda --script unit MB mkpart primary ${PART_START} 100%
cd /vagrant parted /dev/sda --script set 4 lvm on
PART_START=$(parted /dev/sda --script unit MB print | awk '/^ 3 / {print $3}') pvcreate /dev/sda4
parted /dev/sda --script unit MB mkpart primary ${PART_START} 100% vgextend VolGroup00 /dev/sda4
parted /dev/sda --script set 4 lvm on lvextend -l +100%FREE /dev/mapper/VolGroup00-LogVol00
pvcreate /dev/sda4 xfs_growfs /dev/mapper/VolGroup00-LogVol00
vgextend VolGroup00 /dev/sda4 ./scripts/gate-check-commit.sh
lvextend -l +100%FREE /dev/mapper/VolGroup00-LogVol00
xfs_growfs /dev/mapper/VolGroup00-LogVol00
./scripts/gate-check-commit.sh
SHELL SHELL
end
end end
end end