This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVagrantfile
105 lines (85 loc) · 3.49 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
require "yaml"
y = YAML.load File.open ".chef/rackspace_secrets.yaml"
Vagrant.configure("2") do |config|
config.butcher.knife_config_file = '.chef/knife.rb'
1.times do |num|
index = "%02d" % [num + 1]
config.vm.define :"elasticsearch_theodi_org_#{index}" do |config|
config.vm.box = "dummy"
config.vm.hostname = "elasticsearch-#{index}"
config.ssh.private_key_path = "./.chef/id_rsa"
config.ssh.username = "root"
config.vm.provider :rackspace do |rs|
rs.username = y["username"]
rs.api_key = y["api_key"]
rs.flavor = /512M/
rs.image = /Precise/
rs.public_key_path = "./.chef/id_rsa.pub"
rs.auth_url = "https://lon.identity.api.rackspacecloud.com/v2.0"
end
config.vm.provision :shell, :inline => "curl -L https://www.opscode.com/chef/install.sh | bash"
config.vm.provision :chef_client do |chef|
chef.node_name = "elasticsearch"
chef.environment = "production"
chef.chef_server_url = "https://chef.theodi.org"
chef.validation_client_name = "chef-validator"
chef.validation_key_path = ".chef/chef-validator.pem"
chef.run_list = chef.run_list = [
"role[elasticsearch_server]"
]
end
end
end
config.vm.define :logstash_theodi_org do |config|
config.vm.box = "dummy"
config.vm.hostname = "logstash"
config.ssh.private_key_path = "./.chef/id_rsa"
config.ssh.username = "root"
config.vm.provider :rackspace do |rs|
rs.username = y["username"]
rs.api_key = y["api_key"]
rs.flavor = /512M/
rs.image = /Precise/
rs.public_key_path = "./.chef/id_rsa.pub"
rs.auth_url = "https://lon.identity.api.rackspacecloud.com/v2.0"
end
config.vm.provision :shell, :inline => "curl -L https://www.opscode.com/chef/install.sh | bash"
config.vm.provision :chef_client do |chef|
chef.node_name = "logstash"
chef.environment = "production"
chef.chef_server_url = "https://chef.theodi.org"
chef.validation_client_name = "chef-validator"
chef.validation_key_path = ".chef/chef-validator.pem"
chef.run_list = chef.run_list = [
"role[logstash_server]"
]
end
end
config.vm.define :kibana_theodi_org do |config|
config.vm.box = "dummy"
config.vm.hostname = "kibana"
config.ssh.private_key_path = "./.chef/id_rsa"
config.ssh.username = "root"
config.vm.provider :rackspace do |rs|
rs.username = y["username"]
rs.api_key = y["api_key"]
rs.flavor = /512M/
rs.image = /Precise/
rs.public_key_path = "./.chef/id_rsa.pub"
rs.auth_url = "https://lon.identity.api.rackspacecloud.com/v2.0"
end
config.vm.provision :shell, :inline => "curl -L https://www.opscode.com/chef/install.sh | bash"
config.vm.provision :chef_client do |chef|
chef.node_name = "kibana"
chef.environment = "production"
chef.chef_server_url = "https://chef.theodi.org"
chef.validation_client_name = "chef-validator"
chef.validation_key_path = ".chef/chef-validator.pem"
chef.run_list = chef.run_list = [
"role[kibana]"
]
end
end
end