-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkitchen.yml
More file actions
43 lines (38 loc) · 970 Bytes
/
kitchen.yml
File metadata and controls
43 lines (38 loc) · 970 Bytes
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
---
driver:
name: vagrant
provisioner:
name: chef_infra
product_name: <%= ENV['CHEF_PRODUCT_NAME'] || 'chef' %>
chef_license: accept-no-persist
enforce_idempotency: true
multiple_converge: 2
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: almalinux-8
- name: almalinux-9
x-verifiers:
default: &default_verifier
inspec_tests:
- path: test/integration/default
all_repos: &all_repos_verifier
inspec_tests:
- path: test/integration/all_repos
extra_options: &extra_options_verifier
inspec_tests:
- path: test/integration/extra_options
suites:
- name: default
run_list:
- recipe[yum-almalinux-test::default]
verifier: *default_verifier
- name: all_repos
run_list:
- recipe[yum-almalinux-test::all_repos]
verifier: *all_repos_verifier
- name: extra_options
run_list:
- recipe[yum-almalinux-test::extra_options]
verifier: *extra_options_verifier