-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from rackspace-cookbooks/cleanup_martinb3
Clean up elkstack's workarounds, java, deps
- Loading branch information
Showing
44 changed files
with
159 additions
and
407 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
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 |
---|---|---|
|
@@ -2,28 +2,13 @@ source "https://api.berkshelf.com" | |
|
||
metadata | ||
|
||
cookbook 'java' | ||
|
||
# until https://github.com/elastic/cookbook-elasticsearch/pull/230 | ||
cookbook 'elasticsearch', '~> 0.3', git:'[email protected]:racker/cookbook-elasticsearch.git' | ||
|
||
# until https://github.com/poise/python/pull/120 | ||
cookbook 'python', git: '[email protected]:racker/python.git' | ||
|
||
# until https://github.com/lusis/chef-logstash/issues/394 | ||
cookbook 'logstash', git: '[email protected]:lusis/chef-logstash.git' | ||
|
||
cookbook 'rackspace_iptables', git: '[email protected]:rackspace-cookbooks/rackspace_iptables.git' | ||
cookbook 'rackspacecloud', git: '[email protected]:rackspace-cookbooks/rackspacecloud.git' | ||
cookbook 'rackspace_gluster', git: '[email protected]:rackspace-cookbooks/rackspace_gluster.git' | ||
cookbook 'rackops_rolebook', git: '[email protected]:rackops/rackops_rolebook.git' | ||
|
||
# not published | ||
cookbook 'rackspace_cloudbackup', git:'[email protected]:rackspace-cookbooks/rackspace_cloudbackup.git' | ||
|
||
group :integration do | ||
cookbook 'wrapper', path: 'test/fixtures/cookbooks/wrapper' | ||
cookbook 'apt' | ||
cookbook 'yum' | ||
end | ||
|
||
# until https://github.com/opscode-cookbooks/openssl/pull/11 | ||
cookbook 'openssl', git: '[email protected]:racker/openssl.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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,18 @@ | ||
# Encoding: utf-8 | ||
# | ||
# Cookbook Name:: elkstack | ||
# Recipe:: default | ||
# Recipe:: single | ||
# | ||
# Copyright 2014, Rackspace | ||
# | ||
|
||
# base stack requirements for an all-in-one node | ||
include_recipe 'elkstack::_server' | ||
|
||
# include components | ||
include_recipe 'elkstack::elasticsearch' | ||
include_recipe 'elkstack::logstash' | ||
include_recipe 'elkstack::kibana' | ||
|
||
# see attributes, will forward to logstash on localhost | ||
include_recipe 'rsyslog::client' |
Oops, something went wrong.