-
-
Notifications
You must be signed in to change notification settings - Fork 591
Expand file tree
/
Copy pathkitchen.yml
More file actions
60 lines (53 loc) · 1.22 KB
/
kitchen.yml
File metadata and controls
60 lines (53 loc) · 1.22 KB
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
deprecations_as_errors: true
chef_license: accept
product_name: chef
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
install_strategy: once
log_level: <%= ENV['CHEF_LOG_LEVEL'] || 'auto' %>
verifier:
name: inspec
platforms:
- name: almalinux-8
- name: almalinux-9
- name: almalinux-10
- name: amazonlinux-2023
- name: centos-stream-9
- name: centos-stream-10
- name: debian-12
- name: debian-13
- name: fedora-latest
- name: opensuse-leap-15
- name: oraclelinux-8
- name: oraclelinux-9
- name: oraclelinux-10
- name: rockylinux-8
- name: rockylinux-9
- name: rockylinux-10
- name: ubuntu-22.04
- name: ubuntu-24.04
# Reusable YAML anchors for run_lists
x-run_lists:
default: &default_run_list
- recipe[test::default]
default_with_plugins: &plugins_run_list
- recipe[test::default_with_plugins]
suites:
- name: default
run_list: *default_run_list
- name: repository
run_list: *plugins_run_list
attributes:
elasticsearch:
install:
type: repository
- name: package
run_list: *plugins_run_list
attributes:
elasticsearch:
install:
type: package