-
Notifications
You must be signed in to change notification settings - Fork 22
/
.kitchen.yml
59 lines (56 loc) · 1.55 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
---
driver:
name: vagrant
driver_config:
customize:
# Configure network interface to use hosts DNS resolver. Doing this makes installing Gems and other network tasks significantly faster.
natdnsproxy1: 'off'
natdnshostresolver1: 'off'
provisioner:
name: chef_solo
platforms:
- name: ubuntu-16.04
- name: ubuntu-14.04
- name: centos-6.7
suites:
- name: default
includes:
- ubuntu-14.04
- ubuntu-16.04
- centos-6.7
run_list:
# We only include apt because of an issue installing java where ubuntu
# requires an apt-get update in order to successfully run
- recipe[apt]
- recipe[apache_zookeeper::install]
- recipe[apache_zookeeper::configure]
- recipe[apache_zookeeper::service]
attributes:
java:
jdk_version: "7"
apache_zookeeper:
install_java: true
zoo.cfg:
bogus.for.cfg: value1
log4j.properties:
bogus.for.log4j: value2
- name: default-systemd
includes:
- ubuntu-16.04
run_list:
# We only include apt because of an issue installing java where ubuntu
# requires an apt-get update in order to successfully run
- recipe[apt]
- recipe[apache_zookeeper::install]
- recipe[apache_zookeeper::configure]
- recipe[apache_zookeeper::service]
attributes:
java:
jdk_version: "8"
apache_zookeeper:
init_style: systemd
install_java: true
zoo.cfg:
bogus.for.cfg: value1
log4j.properties:
bogus.for.log4j: value2