-
Notifications
You must be signed in to change notification settings - Fork 8
/
.kitchen.yml
72 lines (69 loc) · 1.39 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
66
67
68
69
70
71
72
---
driver:
name: vagrant
customize:
memory: 512
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
- recipe[kafka::zookeeper]
- recipe[kafka]
attributes:
zookeeperd:
cluster:
auto_discovery: false
- name: ubuntu-14.04
run_list:
- recipe[apt]
- recipe[kafka::zookeeper]
- recipe[kafka]
attributes:
zookeeperd:
cluster:
auto_discovery: false
- name: centos-6.4
run_list:
- recipe[yum]
- recipe[kafka::zookeeper]
- recipe[kafka]
attributes:
zookeeperd:
cluster:
auto_discovery: false
- name: centos-7.2
run_list:
- recipe[yum]
- recipe[kafka::zookeeper]
- recipe[kafka]
attributes:
zookeeperd:
cluster:
auto_discovery: false
suites:
- name: kafka-0.8
attributes:
kafka:
version: 0.8.0
config:
zookeeper.connect: "127.0.0.1:2181"
- name: kafka-0.8.1
attributes:
kafka:
version: 0.8.1.1
config:
zookeeper.connect: "127.0.0.1:2181"
- name: kafka-0.8.2
attributes:
kafka:
version: 0.8.2.1
config:
zookeeper.connect: "127.0.0.1:2181"
- name: kafka-0.7
attributes:
kafka:
version: 0.7.2
config:
zk.connect: "127.0.0.1:2181"