-
Notifications
You must be signed in to change notification settings - Fork 122
/
kitchen.yml
52 lines (48 loc) · 1.13 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
driver:
name: vagrant
provisioner:
name: chef_infra
deprecations_as_errors: true
product_name: <%= ENV['CHEF_PRODUCT_NAME'] || 'chef' %>
chef_license: accept-no-persist
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
log_level: <%= ENV['CHEF_LOG_LEVEL'] || 'auto' %>
verifier:
name: inspec
platforms:
- name: centos-7
- name: centos-8
- name: centos-stream-8
- name: debian-10
- name: debian-11
- name: fedora-latest
- name: opensuse-leap-15
- name: ubuntu-18.04
- name: ubuntu-20.04
# - name: ubuntu-22.04
- name: almalinux-8
- name: rockylinux-8
suites:
- name: create
run_list:
- recipe[test::create]
- name: remove
run_list:
- recipe[test::remove]
- name: create_thin
run_list:
- recipe[test::create_thin]
- name: resize
run_list:
- recipe[test::create]
- recipe[test::resize]
- name: resize_thin
run_list:
- recipe[test::create_thin]
- recipe[test::resize_thin]
- name: resize_thin_pool_meta_data
run_list:
- recipe[test::create_thin]
- recipe[test::resize_thin_pool_meta_data]
excludes:
- debian-9