forked from jeff1evesque/machine-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
198 lines (178 loc) · 7.61 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
## Variables (ruby syntax)
atlas_repo = 'jeff1evesque'
atlas_box = 'trusty64'
box_version = '1.0.0'
required_plugins = %w(vagrant-r10k vagrant-triggers vagrant-puppet-install)
plugin_installed = false
environment = 'vagrant'
## Install Vagrant Plugins
required_plugins.each do |plugin|
unless Vagrant.has_plugin? plugin
system "vagrant plugin install #{plugin}"
plugin_installed = true
end
end
## Restart Vagrant: if new plugin installed
if plugin_installed == true
exec "vagrant #{ARGV.join(' ')}"
end
## ensure puppet modules directory on the host before 'vagrant up'
config.trigger.before :up do
run "mkdir -p puppet/environment/#{environment}/modules"
run "mkdir -p puppet/environment/#{environment}/modules_contrib"
end
## Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "#{atlas_repo}/#{atlas_box}"
config.vm.box_download_checksum = 'c26da6ba1c169bdc6e9168125ddb0525'
config.vm.box_url = "https://atlas.hashicorp.com/#{atlas_repo}/boxes/#{atlas_box}/versions/#{box_version}/providers/virtualbox.box"
config.vm.box_download_checksum_type = 'md5'
## Ensure puppet installed within guest
config.puppet_install.puppet_version = '4.3.2'
## 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: 5000, host: 8080
config.vm.network 'forwarded_port', guest: 443, host: 8585
## increase RAM to ensure scrypt doesn't exhaust memory
config.vm.provider 'virtualbox' do |v|
v.customize ['modifyvm', :id, '--memory', '10000']
end
## Run r10k
config.r10k.puppet_dir = "puppet/environment/#{environment}"
config.r10k.puppetfile_path = "puppet/environment/#{environment}/Puppetfile"
## Custom Manifest: install needed packages
#
# Note: future parser allow array iteration in the puppet manifest
config.vm.provision 'puppet' do |puppet|
puppet.environment_path = 'puppet/environment'
puppet.environment = environment
puppet.manifests_path = "puppet/environment/#{environment}/manifests"
puppet.module_path = [
"puppet/environment/#{environment}/modules_contrib",
"puppet/environment/#{environment}/modules",
]
puppet.manifest_file = 'install_packages.pp'
puppet.hiera_config_path = 'hiera.yaml'
end
## Custom Manifest: build scikit-learn
config.vm.provision 'puppet' do |puppet|
puppet.environment_path = 'puppet/environment'
puppet.environment = environment
puppet.manifests_path = "puppet/environment/#{environment}/manifests"
puppet.module_path = [
"puppet/environment/#{environment}/modules_contrib",
"puppet/environment/#{environment}/modules",
]
puppet.manifest_file = 'install_sklearn.pp'
puppet.hiera_config_path = 'hiera.yaml'
end
## Custom Manifest: ensure vagrant-mounted event
#
# Note: future parser allow heredoc syntax in the puppet manifest (since puppet 3.5)
config.vm.provision 'puppet' do |puppet|
puppet.environment_path = 'puppet/environment'
puppet.environment = environment
puppet.manifests_path = "puppet/environment/#{environment}/manifests"
puppet.module_path = [
"puppet/environment/#{environment}/modules_contrib",
"puppet/environment/#{environment}/modules",
]
puppet.manifest_file = 'vagrant_mounted.pp'
puppet.hiera_config_path = 'hiera.yaml'
end
## Custom Manifest: install redis client / server
#
# Note: future parser allow heredoc syntax in the puppet manifest (since puppet 3.5)
config.vm.provision 'puppet' do |puppet|
puppet.environment_path = 'puppet/environment'
puppet.environment = environment
puppet.manifests_path = "puppet/environment/#{environment}/manifests"
puppet.module_path = [
"puppet/environment/#{environment}/modules_contrib",
"puppet/environment/#{environment}/modules",
]
puppet.manifest_file = 'configure_redis.pp'
puppet.hiera_config_path = 'hiera.yaml'
end
## Custom Manifest: configure system (i.e. system timezone)
config.vm.provision 'puppet' do |puppet|
puppet.environment_path = 'puppet/environment'
puppet.environment = environment
puppet.manifests_path = "puppet/environment/#{environment}/manifests"
puppet.module_path = [
"puppet/environment/#{environment}/modules_contrib",
"puppet/environment/#{environment}/modules",
]
puppet.manifest_file = 'configure_system.pp'
end
## Custom Manifest: define webcompilers
#
# Note: future parser allow heredoc sytnax (since puppet 3.5), and allows
# array iteration in the puppet manifest.
config.vm.provision 'puppet' do |puppet|
puppet.environment_path = 'puppet/environment'
puppet.environment = environment
puppet.manifests_path = "puppet/environment/#{environment}/manifests"
puppet.module_path = [
"puppet/environment/#{environment}/modules_contrib",
"puppet/environment/#{environment}/modules",
]
puppet.manifest_file = 'compile_asset.pp'
puppet.hiera_config_path = 'hiera.yaml'
end
## Custom Manifest: install, and configure SQL database
config.vm.provision 'puppet' do |puppet|
puppet.environment_path = 'puppet/environment'
puppet.environment = environment
puppet.manifests_path = "puppet/environment/#{environment}/manifests"
puppet.module_path = [
"puppet/environment/#{environment}/modules_contrib",
"puppet/environment/#{environment}/modules",
]
puppet.manifest_file = 'setup_database.pp'
puppet.hiera_config_path = 'hiera.yaml'
end
## Custom Manifest: start webserver
#
# Note: future parser allow heredoc syntax in the puppet manifest (since puppet 3.5)
config.vm.provision 'puppet' do |puppet|
puppet.environment_path = 'puppet/environment'
puppet.environment = environment
puppet.manifests_path = "puppet/environment/#{environment}/manifests"
puppet.module_path = [
"puppet/environment/#{environment}/modules_contrib",
"puppet/environment/#{environment}/modules",
]
puppet.manifest_file = 'start_webserver.pp'
puppet.hiera_config_path = 'hiera.yaml'
end
# clean up files on the host after 'vagrant destroy'
config.trigger.after :destroy do
run 'rm -Rf log/database'
run 'rm -Rf log/application'
run 'rm -Rf log/webcompiler'
run 'rm -Rf log/webserver'
run 'rm -Rf build'
run 'rm -Rf interface/static/css'
run 'rm -Rf interface/static/img'
run 'rm -Rf interface/static/js'
run 'rm -Rf puppet/environment/*/modules_contrib'
run 'rm -Rf src/jsx/node_modules'
run 'rm -f src/js/.gitignore'
run 'rm -f src/js/content.js'
run 'find . -name "*.pyc" -type f -exec rm -r {} +'
run 'find . -name __pycache__ -type d -exec rm -r {} +'
run 'find . -name .cache -type d -exec rm -r {} +'
end
end