forked from signalfx/signalfx-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
24 lines (18 loc) · 737 Bytes
/
Vagrantfile
File metadata and controls
24 lines (18 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- mode: ruby -*-
# vi: set ft=ruby :
# This Vagrantfile is useful for testing the standalone agent outside of a
# containerized environment.
Vagrant.configure("2") do |config|
# Use a distro that is as opposite of what we build with as possible so that
# we get more confidence that we didn't miss any dependencies.
config.vm.box = "centos/6"
# Plugin vagrant-disksize required for configuration below.
config.disksize.size = "20GB"
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network "private_network", ip: "10.9.8.7"
config.vm.synced_folder ".", "/vagrant", type: "nfs"
config.vm.provider "virtualbox" do |vb|
vb.memory = "8192"
end
end