forked from sous-chefs/varnish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
60 lines (57 loc) · 1.32 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
require_chef_omnibus: 12.19.36
attributes:
apt:
compile_time_update: true
varnish:
backend_host: '127.0.0.10'
platforms:
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: centos-7.3
run_list:
- recipe[disable_ipv6::disable_ipv6]
- recipe[yum-epel]
- name: centos-6.8
run_list:
- recipe[disable_ipv6::disable_ipv6]
- recipe[yum-epel]
# Unless other wise noted excludes exist because the distro version get's installed instead (need pinning to support this)
suites:
- name: varnish3
excludes:
- centos-7.3
- ubuntu-16.04
run_list:
- recipe[install_varnish::vendor_install]
attributes:
varnish:
major_version: 3.0
- name: varnish4
excludes:
- ubuntu-16.04
run_list:
- recipe[install_varnish::vendor_install]
attributes:
varnish:
major_version: 4.0
- name: varnish41
run_list:
- recipe[install_varnish::vendor_install]
attributes:
varnish:
major_version: 4.1
- name: distro
excludes:
- centos-6.8 # Uses varnish 2 which we don't support
run_list:
- recipe[install_varnish::distro_install]
- name: full_stack
run_list:
- recipe[install_varnish::full_stack]
excludes:
- centos-6.8 # Full stack tests use distro install so need to skip centos-6 for now.