-
Notifications
You must be signed in to change notification settings - Fork 141
/
kitchen.yml
81 lines (68 loc) · 1.59 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: false
chef_license: accept-no-persist
verifier:
name: inspec
platforms:
- name: amazonlinux
driver_config:
box: mvbcoding/awslinux
- name: amazonlinux-2
- name: centos-6
- name: centos-7
- name: centos-8
- name: debian-9
- name: debian-10
- name: fedora-latest
- name: ubuntu-16.04
- name: ubuntu-18.04
suites:
# - name: default
# run_list:
# - recipe[test::default]
# attributes:
# iptables:
# iptables_sysconfig:
# IPTABLES_STATUS_VERBOSE: 'yes'
# ip6tables_sysconfig:
# IPTABLES_STATUS_VERBOSE: 'yes'
# - name: disabled
# run_list:
# - recipe[iptables::disabled]
# - name: no_template
# run_list:
# - recipe[test::no_template]
# attributes:
# iptables:
# iptables_sysconfig:
# IPTABLES_STATUS_VERBOSE: 'yes'
# ip6tables_sysconfig:
# IPTABLES_STATUS_VERBOSE: 'yes'
# - name: nested
# run_list:
# - recipe[test::nested]
# attributes:
# iptables:
# iptables_sysconfig:
# IPTABLES_STATUS_VERBOSE: 'yes'
# ip6tables_sysconfig:
# IPTABLES_STATUS_VERBOSE: 'yes'
- name: all-tables
run_list:
- recipe[test::all-tables]
- name: install-and-remove
run_list:
- recipe[test::install-and-remove]
- name: rules
run_list:
- recipe[test::rules]
- name: rule-line
run_list:
- recipe[test::rule-line]
- name: rule-line-number
run_list:
- recipe[test::rule-line-number]