Helix SwarmHelix Swarm

Vagrantfile

  • //
  • guest/
  • jen_bottom/
  • vagrant/
  • helix_authentication_service/
  • Vagrantfile #2
  • View
  • Commits
  • Open Download .zip Download (813 B)
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. # This is a set of different vagrant setups that are primarily useful for package
  4. # building and testing. The techniques here were borrowed from the Git Fusion
  5. # team.
  6. Vagrant.configure(2) do |config|
  7. config.vm.define 'HAS' do |config|
  8. config.vm.hostname = 'HAS'
  9. config.vm.box = "bento/ubuntu-16.04"
  10. config.vm.communicator = "ssh"
  11. config.ssh.keys_only = true
  12. config.ssh.insert_key=true
  13.  
  14. # config.vm.network :public_network
  15. config.vm.network :private_network, ip: '192.168.2.71'
  16.  
  17. config.vm.synced_folder '.', '/home/vagrant/hws'
  18.  
  19. config.vm.provider 'virtualbox' do |vb|
  20. vb.memory = 4096
  21. end
  22. config.vm.provision "shell", path: "base.sh"
  23. config.vm.provision "shell", path: "helix_authentication_service.sh", privileged: false
  24. end
  25. end
# Change User Description Committed
#2 26202 Jen Bottom Integ from dev to main 5 years ago
#1 26197 Jen Bottom Copy up from DVCS dev stream to DVCS main stream 5 years ago