Skip to content

Commit 8af1523

Browse files
Automated PR: Standardising Files
[skip ci] This PR will standardise the files we have with out agreed spec in sous-chefs/repo-management. This repo has been identified by topic(s) of chef-cookbook
1 parent 5cbdf31 commit 8af1523

File tree

6 files changed

+113
-23
lines changed

6 files changed

+113
-23
lines changed

.markdownlint-cli2.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ config:
22
ul-indent: false # MD007
33
line-length: false # MD013
44
no-duplicate-heading: false # MD024
5+
reference-links-images: false # MD052

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
Standardise files with files in sous-chefs/repo-management
6+
57
## 5.1.0 - *2023-04-04*
68

79
## 5.0.0 - *2023-03-25*

documentation/.gitkeep

Whitespace-only changes.

kitchen.dokken.yml

Lines changed: 65 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,47 @@
11
driver:
22
name: dokken
33
privileged: true
4+
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
45

5-
transport:
6-
name: dokken
7-
8-
provisioner:
9-
name: dokken
10-
chef_license: accept-no-persist
6+
transport: { name: dokken }
7+
provisioner: { name: dokken }
118

129
platforms:
1310
- name: almalinux-8
1411
driver:
1512
image: dokken/almalinux-8
1613
pid_one_command: /usr/lib/systemd/systemd
1714

18-
- name: amazonlinux-2
15+
- name: almalinux-9
1916
driver:
20-
image: dokken/amazonlinux-2
17+
image: dokken/almalinux-9
2118
pid_one_command: /usr/lib/systemd/systemd
2219

23-
- name: amazonlinux-2022
20+
- name: amazonlinux-2023
21+
driver:
22+
image: dokken/amazonlinux-2023
23+
pid_one_command: /usr/lib/systemd/systemd
24+
25+
- name: centos-7
2426
driver:
25-
image: dokken/amazonlinux-2022
27+
image: dokken/centos-7
28+
pid_one_command: /usr/lib/systemd/systemd
29+
30+
- name: centos-stream-8
31+
driver:
32+
image: dokken/centos-stream-8
2633
pid_one_command: /usr/lib/systemd/systemd
2734

35+
- name: centos-stream-9
36+
driver:
37+
image: dokken/centos-stream-9
38+
pid_one_command: /usr/lib/systemd/systemd
39+
40+
- name: debian-9
41+
driver:
42+
image: dokken/debian-9
43+
pid_one_command: /bin/systemd
44+
2845
- name: debian-10
2946
driver:
3047
image: dokken/debian-10
@@ -35,19 +52,44 @@ platforms:
3552
image: dokken/debian-11
3653
pid_one_command: /bin/systemd
3754

38-
- name: centos-7
55+
- name: debian-12
3956
driver:
40-
image: dokken/centos-7
57+
image: dokken/debian-12
58+
pid_one_command: /bin/systemd
59+
60+
- name: fedora-latest
61+
driver:
62+
image: dokken/fedora-latest
4163
pid_one_command: /usr/lib/systemd/systemd
4264

43-
- name: centos-stream-8
65+
- name: opensuse-leap-15
4466
driver:
45-
image: dokken/centos-stream-8
67+
image: dokken/opensuse-leap-15
4668
pid_one_command: /usr/lib/systemd/systemd
4769

48-
- name: fedora-latest
70+
- name: oraclelinux-7
4971
driver:
50-
image: dokken/fedora-latest
72+
image: dokken/oraclelinux-7
73+
pid_one_command: /usr/lib/systemd/systemd
74+
75+
- name: oraclelinux-8
76+
driver:
77+
image: dokken/oraclelinux-8
78+
pid_one_command: /usr/lib/systemd/systemd
79+
80+
- name: oraclelinux-9
81+
driver:
82+
image: dokken/oraclelinux-9
83+
pid_one_command: /usr/lib/systemd/systemd
84+
85+
- name: rockylinux-8
86+
driver:
87+
image: dokken/rockylinux-8
88+
pid_one_command: /usr/lib/systemd/systemd
89+
90+
- name: rockylinux-9
91+
driver:
92+
image: dokken/rockylinux-9
5193
pid_one_command: /usr/lib/systemd/systemd
5294

5395
- name: ubuntu-18.04
@@ -60,12 +102,12 @@ platforms:
60102
image: dokken/ubuntu-20.04
61103
pid_one_command: /bin/systemd
62104

63-
# - name: opensuse-leap-15
64-
# driver:
65-
# image: dokken/opensuse-leap-15
66-
# pid_one_command: /usr/lib/systemd/systemd
105+
- name: ubuntu-22.04
106+
driver:
107+
image: dokken/ubuntu-22.04
108+
pid_one_command: /bin/systemd
67109

68-
- name: rockylinux-8
110+
- name: ubuntu-23.04
69111
driver:
70-
image: dokken/rockylinux-8
71-
pid_one_command: /usr/lib/systemd/systemd
112+
image: dokken/ubuntu-23.04
113+
pid_one_command: /bin/systemd

kitchen.exec.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
driver: { name: exec }
3+
transport: { name: exec }
4+
5+
platforms:
6+
- name: macos-latest
7+
- name: windows-latest

kitchen.global.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
provisioner:
3+
name: chef_infra
4+
product_name: chef
5+
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
6+
channel: stable
7+
install_strategy: once
8+
chef_license: accept
9+
enforce_idempotency: <%= ENV['ENFORCE_IDEMPOTENCY'] || true %>
10+
multiple_converge: <%= ENV['MULTIPLE_CONVERGE'] || 2 %>
11+
deprecations_as_errors: true
12+
log_level: <%= ENV['CHEF_LOG_LEVEL'] || 'auto' %>
13+
14+
verifier:
15+
name: inspec
16+
17+
platforms:
18+
- name: almalinux-8
19+
- name: almalinux-9
20+
- name: amazonlinux-2023
21+
- name: centos-7
22+
- name: centos-stream-8
23+
- name: centos-stream-9
24+
- name: debian-9
25+
- name: debian-10
26+
- name: debian-11
27+
- name: debian-12
28+
- name: fedora-latest
29+
- name: opensuse-leap-15
30+
- name: oraclelinux-7
31+
- name: oraclelinux-8
32+
- name: oraclelinux-9
33+
- name: rockylinux-8
34+
- name: rockylinux-9
35+
- name: ubuntu-18.04
36+
- name: ubuntu-20.04
37+
- name: ubuntu-22.04
38+
- name: ubuntu-23.04

0 commit comments

Comments
 (0)