Sha256: 50043cdb2a0529b1ee95a7753e7d4b1b8b6f8b08d1966649171cff2c45570371

Contents?: true

Size: 1.49 KB

Versions: 6

Compression:

Stored size: 1.49 KB

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

vertica_version = Dir['vertica_*.deb'].first
if vertica_version.nil?
  raise "Please place a vertica .deb pacakge in the \`vagrant\` folder."
end

# 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|
  # All Vagrant configuration is done here. The most common configuration
  # options are documented and commented below. For a complete reference,
  # please see the online documentation at vagrantup.com.

  # Every Vagrant virtual environment requires a box to build off of.
  config.vm.box = "puphpet/ubuntu1404-x64"

  # Disable automatic box update checking. If you disable this, then
  # boxes will only be checked for updates when the user runs
  # `vagrant box outdated`. This is not recommended.
  # config.vm.box_check_update = false

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine. In the example below,
  # accessing "localhost:8080" will access port 80 on the guest machine.
  config.vm.network "forwarded_port", guest: 5433, host: 5433

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
  # config.vm.network "private_network", ip: "192.168.33.10"

  config.vm.provision "shell", path: "setup_vertica.sh"

  config.vm.provider "vmware_fusion" do |v|
    v.vmx["memsize"] = "2048"
    v.vmx["numvcpus"] = "2"
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vertica-1.0.3 vagrant/Vagrantfile
vertica-1.0.1 vagrant/Vagrantfile
vertica-1.0.0 vagrant/Vagrantfile
vertica-1.0.0.rc2 vagrant/Vagrantfile
vertica-1.0.0.rc1 vagrant/Vagrantfile
vertica-0.12.0 vagrant/Vagrantfile