From dd6289e275f999732981ce0f04ccf364bb017052 Mon Sep 17 00:00:00 2001 From: Tim Kuhlman Date: Fri, 7 Mar 2014 11:57:54 -0700 Subject: [PATCH] Added the Mon Api box --- Berksfile | 1 + Vagrantfile | 10 ++++++++++ roles/Api.json | 16 ++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 roles/Api.json diff --git a/Berksfile b/Berksfile index c2916e7..511bc9c 100644 --- a/Berksfile +++ b/Berksfile @@ -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' diff --git a/Vagrantfile b/Vagrantfile index 19f73c0..781b0f6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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" diff --git a/roles/Api.json b/roles/Api.json new file mode 100644 index 0000000..3ce8f30 --- /dev/null +++ b/roles/Api.json @@ -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": { + } +}