Last active
October 15, 2015 19:41
-
-
Save avtar/c83d22b29ca7099734dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require 'yaml' | |
ansible_vars = YAML.load_file('provisioning/vars.yml') | |
app_name = ansible_vars["nodejs_app_name"] | |
app_directory = ansible_vars["nodejs_app_install_dir"] | |
# Check for the existence of 'VM_HOST_TCP_PORT' or 'VM_GUEST_TCP_PORT' | |
# environment variables. Otherwise if 'nodejs_app_tcp_port' is defined | |
# in vars.yml then use that port. Failing that use defaults provided | |
# in this file. | |
host_tcp_port = ENV["VM_HOST_TCP_PORT"] || ansible_vars["nodejs_app_tcp_port"] || 8080 | |
guest_tcp_port = ENV["VM_GUEST_TCP_PORT"] || ansible_vars["nodejs_app_tcp_port"] || 8080 | |
# By default this VM will use 1 processor core and 1GB of RAM. The 'VM_CPUS' and | |
# "VM_RAM" environment variables can be used to change that behaviour. | |
cpus = ENV["VM_CPUS"] || 1 | |
ram = ENV["VM_RAM"] || 1048 | |
Vagrant.configure(2) do |config| | |
config.vm.box = "inclusivedesign/centos7" | |
# Your working directory will be synced to /home/vagrant/sync in the VM. | |
config.vm.synced_folder ".", "#{app_directory}", disabled: true | |
# List additional directories to sync to the VM in your "Vagrantfile.local" file | |
# using the following format: | |
# config.vm.synced_folder "../path/on/your/host/os/your-project", "/home/vagrant/sync/your-project" | |
# Port forwarding takes place here. The 'guest' port is used inside the VM | |
# whereas the 'host' port is used by your host operating system. | |
config.vm.network "forwarded_port", guest: guest_tcp_port, host: host_tcp_port, protocol: "tcp", | |
auto_correct: true | |
# Port 19531 is needed so logs can be viewed using systemd-journal-gateway | |
config.vm.network "forwarded_port", guest: 19531, host: 19531, protocol: "tcp", | |
auto_correct: true | |
config.vm.hostname = app_name | |
config.vm.provider :virtualbox do |vm| | |
vm.customize ["sharedfolder", "add", :id, "--name", "vagrant", "--hostpath", (("//?/" + File.dirname(__FILE__)).gsub("/","\\"))] | |
vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"] | |
vm.customize ["modifyvm", :id, "--memory", ram] | |
vm.customize ["modifyvm", :id, "--cpus", cpus] | |
end | |
config.vm.provision :shell, inline: "mkdir -p /home/vagrant/sync", run: "always" | |
config.vm.provision :shell, inline: "mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` vagrant /home/vagrant/sync", | |
run: "always" | |
# The ansible-galaxy command assumes a git client is available in the VM, the | |
# inclusivedesign/centos7 Vagrant box includes one. | |
config.vm.provision "shell", inline: <<-SHELL | |
sudo ansible-galaxy install -fr #{app_directory}/provisioning/requirements.yml | |
sudo PYTHONUNBUFFERED=1 ansible-playbook #{app_directory}/provisioning/playbook.yml --tags="install,configure,deploy" | |
SHELL | |
# 'Vagrantfile.local' should be excluded from version control. | |
if File.exist? "Vagrantfile.local" | |
instance_eval File.read("Vagrantfile.local"), "Vagrantfile.local" | |
end | |
# http://serverfault.com/a/725051 | |
config.vm.provision "shell", inline: "sudo systemctl restart #{app_name}.service", | |
run: "always" | |
config.vm.provision "shell", inline: "sudo systemctl restart systemd-journal-gatewayd.service", | |
run: "always" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment