-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Vagrantfile
113 lines (104 loc) · 3.81 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Description:
# This is a Vagrant file for developers to quickly get started with development
# on the puppet-st2 module.
#
# Usage:
# - Install VirtualBox (https://www.virtualbox.org/manual/ch02.html)
# - OR Install KVM/libvirt (https://www.linuxtechi.com/install-kvm-hypervisor-on-centos-7-and-rhel-7/)
# - Install Vagrant (https://www.vagrantup.com/docs/installation/)
#
# - Start vagrant VM
# vagrant up
#
# - In another terminal start up the rsync-auto daemon.
# Now, if you make any changes the code will be copied into the VM. This way you can
# re-run Puppet with your latest code without having to manually copy the code in:
# vagrant rsync-auto
#
# - Login to vagrant VM
# vagrant ssh
#
# - Fix sudoers directory
# sudo su -
# chmod 440 -R /etc/sudoers.d
# chmod 755 -R /etc/sudoers.d # run this after puppet to get vargrant-rsync working again
#
# - Run puppet to install StackStorm
# puppet apply -e "include st2::profile::fullinstall"
#
# # Python 3 testing
# # CentOS/RHEL
# echo -e "class { 'st2': python_version => '3.8' }\n include st2::profile::fullinstall" > apply.pp
# # Ubuntu 18.04 +
# echo -e "class { 'st2': python_version => 'python3.8' }\n include st2::profile::fullinstall" > apply.pp
#
# chmod 440 -R /etc/sudoers.d; puppet apply apply.pp; chmod 755 -R /etc/sudoers.d
#
# - Keep editing files locally and re-running puppet with the command above
#
# Nick's notes
# vagrant destroy -f
# vagrant up
# vagrant ssh
# sudo su -
# vi /etc/puppetlabs/code/modules/mongodb/manifests/repo.pp
# '4.4' => '20691EEC35216C63CAF66CE1656408E390CFB1F5',
# '4.2' => 'E162F504A20CDF15827F718D4B7C549A058F8B6B',
# '4.0' => '9DA31620334BD75D9DCB49F368818C72E52529D4',
#
# puppet apply -e "include st2::profile::fullinstall"
# hostname of the VM
hostname = ENV['HOSTNAME'] ? ENV['HOSTNAME'] : 'puppet-st2-vagrant'
# We also support the :libvirt provider for CentOS / RHEL folks
provider = ENV['PROVIDER'] ? ENV['PROVIDER'] : 'libvirt'
provider = provider.to_sym
# The following boxes will work for both :virtualbox and :libvirt providers
# - centos/7
# - generic/ubuntu1604
# - generic/ubuntu1804
box = ENV['BOX'] ? ENV['BOX'] : 'centos/7'
#box = ENV['BOX'] ? ENV['BOX'] : 'centos/8stream'
#box = ENV['BOX'] ? ENV['BOX'] : 'generic/centos8'
#box = ENV['BOX'] ? ENV['BOX'] : 'generic/ubuntu1804'
#box = ENV['BOX'] ? ENV['BOX'] : 'generic/ubuntu2004'
# 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|
config.vm.define "st2" do |st2|
# Box details
st2.vm.box = "#{box}"
st2.vm.hostname = "#{hostname}"
# Box Specifications
if provider == :virtualbox
st2.vm.provider :virtualbox do |vb|
vb.name = "#{hostname}"
vb.memory = 2048
vb.cpus = 2
vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
end
elsif provider == :libvirt
st2.vm.provider :libvirt do |lv|
lv.host = "#{hostname}"
lv.memory = 2048
lv.cpus = 2
lv.uri = "qemu:///system"
lv.storage_pool_name = "images"
end
else
raise RuntimeError.new("Unsupported provider: #{provider}")
end
# sync code into box for development
# To setup automatic rsyncing, in another shell session you need to run:
# vagrant rsync-auto
#
# https://www.vagrantup.com/docs/cli/rsync-auto.html
st2.vm.synced_folder ".", "/vagrant", type: 'rsync', rsync__auto: true
# Start shell provisioning.
st2.vm.provision "shell" do |s|
s.path = "build/scripts/install_puppet.sh"
s.privileged = false
end
end
end