-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.kitchen.yml
83 lines (78 loc) · 1.88 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
73
74
75
76
77
78
79
80
81
82
---
driver:
name: vagrant
provisioner:
name: chef_zero
chef_license: accept
verifier:
name: inspec
inspec_tests:
- path: test/integration/default/inspec
platforms:
- name: ubuntu-14.04
driver:
box: bento/ubuntu-14.04
- name: ubuntu-16.04
driver:
box: bento/ubuntu-16.04
- name: ubuntu-18.04
driver:
box: bento/ubuntu-18.04
- name: debian-8
driver:
box: bento/debian-8
- name: debian-9
driver:
box: bento/debian-9
suites:
- name: chef-13
attributes:
nginx:
config:
mainconfig_include: "/etc/nginx/mainconfig_custom_include.conf"
run_list:
- recipe[apt]
- recipe[nginx_lwrp::official-repo]
- recipe[nginx_lwrp]
- recipe[nginx_test::cleaner_check]
- recipe[nginx_test]
- recipe[nginx_test::helper_templates]
- recipe[nginx_test::streams]
provisioner:
product_name: chef
product_version: 13
includes:
- ubuntu-16.04
- ubuntu-14.04
- name: chef-14
attributes:
nginx:
config:
mainconfig_include: "/etc/nginx/mainconfig_custom_include.conf"
provisioner:
product_name: chef
product_version: 14
run_list:
- recipe[apt]
- recipe[nginx_lwrp::official-repo]
- recipe[nginx_lwrp]
- recipe[nginx_test::cleaner_check]
- recipe[nginx_test]
- recipe[nginx_test::helper_templates]
- recipe[nginx_test::streams]
- name: chef-15
attributes:
nginx:
config:
mainconfig_include: "/etc/nginx/mainconfig_custom_include.conf"
provisioner:
product_name: chef
product_version: 15
run_list:
- recipe[apt]
- recipe[nginx_lwrp::official-repo]
- recipe[nginx_lwrp]
- recipe[nginx_test::cleaner_check]
- recipe[nginx_test]
- recipe[nginx_test::helper_templates]
- recipe[nginx_test::streams]