-
Notifications
You must be signed in to change notification settings - Fork 76
/
.kitchen.yml
52 lines (48 loc) · 1012 Bytes
/
.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
---
driver:
name: vagrant
# customize:
# cpus: 2
# memory: 4096
provisioner:
name: chef_zero
require_chef_omnibus: true
verifier:
name: inspec
platforms:
- name: centos-6.7
- name: centos-7.3
- name: debian-6.0.10
run_list:
- apt::default
- name: ubuntu-12.04
run_list:
- apt::default
- name: ubuntu-14.04
run_list:
- apt::default
- name: ubuntu-16.04
run_list:
- apt::default
suites:
- name: default
run_list:
- recipe[java::default]
- recipe[hadoop::default]
- recipe[hadoop::hbase]
- recipe[hadoop::hive]
- recipe[hadoop::oozie]
- recipe[hadoop::pig]
- recipe[hadoop::spark]
- recipe[hadoop::storm]
- recipe[hadoop::zookeeper]
attributes:
hadoop:
hdfs_site:
'dfs.datanode.max.transfer.threads': 4096
hive:
hive_site:
'hive.support.concurrency': true
'hive.zookeeper.quorum': 'localhost'
java:
jdk_version: '7'