forked from mattbaird/elastigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a Vagrant elasticsearch instance to make things easier to develop…
… with.
- Loading branch information
Matthew Baird
authored and
Matthew Baird
committed
Feb 21, 2013
1 parent
c383ab3
commit 9d157c3
Showing
6 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[submodule "java"] | ||
path = java | ||
url = https://github.com/cookbooks/java.git | ||
[submodule "cookbooks/java"] | ||
path = cookbooks/java | ||
url = https://github.com/cookbooks/java.git | ||
[submodule "cookbooks/apt"] | ||
path = cookbooks/apt | ||
url = https://github.com/opscode-cookbooks/apt.git | ||
[submodule "cookbooks/elasticsearch"] | ||
path = cookbooks/elasticsearch | ||
url = https://github.com/mattbaird/elasticsearch-chef.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"active":{"default":"c8e5c9a3-3bab-4390-ba96-0858bf55486d"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Vagrant::Config.run do |config| | ||
config.vm.box = "lucid64" | ||
config.vm.box_url = "http://files.vagrantup.com/lucid64.box" | ||
config.vm.forward_port 80, 8080 | ||
config.vm.forward_port 9300, 9300 | ||
|
||
config.vm.provision :chef_solo do |chef| | ||
chef.cookbooks_path = "cookbooks" | ||
chef.add_recipe("apt") | ||
chef.add_recipe("java") | ||
chef.add_recipe("elasticsearch") | ||
end | ||
end |
Submodule elasticsearch
added at
2f28fa