Added the Mon Api box

This commit is contained in:
Tim Kuhlman 2014-03-07 11:57:54 -07:00
parent a1ee4ca03b
commit dd6289e275
3 changed files with 27 additions and 0 deletions

View File

@ -1,5 +1,6 @@
metadata
cookbook 'hostsfile', '= 1.0.1'
cookbook 'api', git: 'git@git.hpcloud.net:mon/cookbooks-api'
cookbook 'kafka', git: 'git@git.hpcloud.net:mon/cookbooks-kafka'
cookbook 'mon_persister', git: 'git@git.hpcloud.net:mon/cookbooks-mon_persister'
cookbook 'percona', git: 'https://github.com/tkuhlman/chef-percona'

10
Vagrantfile vendored
View File

@ -11,6 +11,16 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.berkshelf.enabled = true
# VM specific settings
config.vm.define "api" do |api|
api.vm.hostname = 'api'
api.vm.network :private_network, ip: "192.168.10.4"
api.vm.provision :chef_solo do |chef|
chef.roles_path = "roles"
chef.data_bags_path = "data_bags"
chef.add_role "Api"
end
end
config.vm.define "kafka" do |kafka|
kafka.vm.hostname = 'kafka'
kafka.vm.network :private_network, ip: "192.168.10.10"

16
roles/Api.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "Api",
"description": "Sets up the Monitoring Api",
"json_class": "Chef::Role",
"default_attributes": {
},
"override_attributes": {
},
"chef_type": "role",
"run_list": [
"role[Basenode]",
"recipe[mon-api]"
],
"env_run_lists": {
}
}