-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
132 lines (126 loc) · 3.67 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
# 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.box = "opscode-centos-6.5"
config.omnibus.chef_version = :latest
config.vm.define :mongo_shading_and_replica do |server|
server.vm.network "private_network", ip: "192.168.33.10"
server.vm.provision "chef_solo" do |chef|
chef.cookbooks_path = %w[./berks-cookbooks ./cookbooks]
chef.roles_path = "roles"
chef.run_list = [
"recipe[mongodb-single-instance::mongod]",
"recipe[mongodb-single-instance::replica]",
"recipe[mongodb-single-instance::configsvr]",
"recipe[mongodb-single-instance::mongos]"
]
chef.json = {
mongod_single: {
mongos: {
port: 27100,
chunkSize: 1
},
configsvr: {
port: 27101
},
replicasets: [
{
name: "sh0",
members: [
{ port: 27200, opts: { arbiterOnly: true } },
{ port: 27201, primary: true },
{ port: 27202 },
{ port: 27203 }
]
},
{
name: "sh1",
members: [
{ port: 27210, opts: { arbiterOnly: true } },
{ port: 27211, primary: true },
{ port: 27212 },
{ port: 27213 }
]
},
{
name: "sh2",
members: [
{ port: 27220, opts: { arbiterOnly: true } },
{ port: 27221, primary: true },
{ port: 27222 },
{ port: 27223 }
]
}
],
shard_collections: {
"test.addressbook" => "name",
"mydatabase.calendar" => "date"
}
}
}
end
end
# config.vm.define :mongo_config do |server|
# server.vm.network "private_network", ip: "192.168.33.100"
# server.vm.provision "chef_solo" do |chef|
# chef.cookbooks_path = %w[./berks-cookbooks ./cookbooks]
# chef.roles_path = "roles"
# chef.run_list = [
# "recipe[mongodb::configserver]"
# ]
# chef.json = {
# mongodb: {
# cluster_name: "cluster",
# }
# }
# end
# end
#
# config.vm.define :mongos do |server|
# server.vm.network "private_network", ip: "192.168.33.110"
# server.vm.provision "chef_solo" do |chef|
# chef.cookbooks_path = %w[./berks-cookbooks ./cookbooks]
# chef.roles_path = "roles"
# chef.run_list = [
# "recipe[mongodb::mongos]",
# ]
# chef.json = {
# mongodb: {
# cluster_name: "cluster",
# replica_aribiter_only: true,
# shareded_collections: {},
# config: {
# configdb: {}
# },
# auto_configure: {
# replicaset: false,
# sharding: false
# }
# }
# }
# end
# end
#
# (1..9).each do |i|
# name = "mongod%d" % i
# ip = "192.168.33.%d" % (110 + i)
# config.vm.define name.to_sym do |server|
# server.vm.network "private_network", ip: ip
# server.vm.provision "chef_solo" do |chef|
# chef.cookbooks_path = %w[./berks-cookbooks ./cookbooks]
# chef.roles_path = "roles"
# chef.run_list = [
# "recipe[mongodb::shard]",
# "recipe[mongodb::replicaset]"
# ]
# chef.json = {
# mongodb: {
# cluster_name: "cluster",
# }
# }
# end
# end
# end
end