forked from bloomberg/chef-bach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Berksfile.common
63 lines (55 loc) · 1.74 KB
/
Berksfile.common
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
# -*- mode: ruby -*-
#
# This file is intended to be loaded into your Berksfile with
# 'instance_eval', in order to manage all of the external cookbooks.
#
#
# Upstream cookbooks
#
# These are all the top-level cookbooks used by isolated chef servers
# in BACH clusters. The bach_cluster deployment cookbook maintains
# these references so we may upload them to the chef server created
# by the cookbook.
#
# This list was derived from known roles and runlists.
#
# cat roles/*.json | grep recipe | perl -nle 's/\s//g; print' | \
# sort -n | uniq | \
# perl -nle 's/\"//g; s/^recipe//g; s/^.//; s/..$//; s/::.*//; print' | \
# sort | uniq | perl -nle 'print "depends \"$_\""'
#
cookbook 'apt'
cookbook 'chef-client'
cookbook 'java'
cookbook 'maven'
cookbook 'ntp'
cookbook 'pam'
cookbook 'ubuntu'
cookbook 'chef-sugar'
cookbook 'openssl'
cookbook 'postgresql'
cookbook 'resolvconf'
cookbook 'database'
#
# Transitive dependencies that have been forked for one reason or another.
#
# bfd is not on the supermarket
cookbook 'bfd',
git: 'https://github.com/bloomberg/openbfdd-cookbook'
# cobblerd upstream, pending submitting update to supermarket
cookbook 'cobblerd',
git: 'https://github.com/bloomberg/cobbler-cookbook'
# jmxtrans 1.0+ isn't on the supermarket.
cookbook 'jmxtrans',
git: 'https://github.com/jmxtrans/jmxtrans-cookbook',
branch: 'ver-2.0'
# 'kafka' has an entry on the supermarket, but it's the wrong cookbook.
cookbook 'kafka',
git: 'https://github.com/mthssdrbrg/kafka-cookbook.git',
tag: 'v2.2.2'
# we have a full fork of the chef-pdns cookbook
cookbook 'pdns',
git: 'https://github.com/http-418/pdns'
# locking_resource is not on the supermarket
cookbook 'locking_resource',
git: 'https://github.com/bloomberg/locking_resource-cookbook'