forked from bloomberg/chef-bach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
65 lines (63 loc) · 1.57 KB
/
.kitchen.yml
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
64
65
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
run_list:
- 'recipe[apt::default]'
- 'recipe[java::oracle]'
- 'recipe[bcpc-hadoop::hdp_repo]'
attributes: {
java: {
oracle: {
accept_oracle_download_terms: true
}
},
bcpc: {
hadoop: {
repos: {
hortonworks: 'http://private-repo-1.hortonworks.com/HDP/ubuntu14/2.x/updates/2.6.1.17-1',
hdp_utils: 'http://private-repo-1.hortonworks.com/HDP-UTILS-1.1.0.21/repos/ubuntu14'
}
}
}
}
suites:
- name: mysql_connector
run_list:
- 'recipe[bcpc::mysql_connector]'
- 'recipe[bcpc::test_mysql_connector]'
attributes:
bcpc:
bin_dir:
path: "/tmp/"
- name: zookeeper
run_list:
- 'recipe[bcpc_kafka::zookeeper_server]'
- name: yarn
run_list:
- 'recipe[bcpc::default]'
- 'recipe[java::default]'
- 'recipe[openssh::default]'
- 'recipe[bcpc-hadoop::hdp_repo]'
- 'recipe[bcpc-hadoop::configs]'
- 'recipe[bcpc-hadoop::hadoop_config]'
- 'recipe[bcpc-hadoop::namenode_no_HA]'
- 'recipe[bcpc-hadoop::datanode]'
- 'recipe[bcpc-hadoop::resource_manager]'
- name: kafka
attributes: {
kafka: {
version: '0.8.2.1',
scala_version: '2.9.2',
checksum: '',
md5_checksum: ''
}
}
run_list:
- 'recipe[bcpc_kafka::default]'
- 'recipe[bcpc_kafka::setattr]'
- 'recipe[kafka::default]'
- 'recipe[bcpc_kafka::kafka]'