-
Notifications
You must be signed in to change notification settings - Fork 76
/
.kitchen.dokken.yml
65 lines (61 loc) · 1.58 KB
/
.kitchen.dokken.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: dokken
privileged: true
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
transport:
name: dokken
provisioner:
name: dokken
# These three lines enforce Chef 13 compatibility
client_rb:
treat_deprecation_warnings_as_errors: true
resource_cloning: false
platforms:
- name: centos-6
driver:
chef_version: '12.21.3'
hostname: 'localhost.localdomain'
image: dokken/centos-6
pid_one_command: /sbin/init
platform: rhel
- name: centos-7
driver:
image: dokken/centos-7
intermediate_instructions:
- RUN /usr/bin/yum install -y systemd-sysv
pid_one_command: /usr/lib/systemd/systemd
platform: rhel
- name: ubuntu-12.04
driver:
chef_version: '12.21.3'
image: dokken/ubuntu-12.04
intermediate_instructions:
- RUN /usr/bin/apt-get update
pid_one_command: /sbin/init
- name: ubuntu-14.04
driver:
image: dokken/ubuntu-14.04
intermediate_instructions:
- RUN /usr/bin/apt-get update
pid_one_command: /sbin/init
- name: ubuntu-16.04
driver:
image: dokken/ubuntu-16.04
intermediate_instructions:
- RUN /usr/bin/apt-get update
pid_one_command: /bin/systemd
suites:
- name: default
run_list:
- recipe[java::default]
- recipe[hadoop_test::default]
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'