-
-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into testing-cookbook-idempotency
- Loading branch information
Showing
31 changed files
with
453 additions
and
164 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,57 +8,38 @@ name: ci | |
- main | ||
|
||
jobs: | ||
delivery: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Run Chef Delivery | ||
uses: actionshub/chef-delivery@main | ||
env: | ||
CHEF_LICENSE: accept-no-persist | ||
|
||
yamllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Run yaml Lint | ||
uses: actionshub/yamllint@main | ||
|
||
mdl: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Run Markdown Lint | ||
uses: actionshub/markdownlint@main | ||
lint-unit: | ||
uses: sous-chefs/.github/.github/workflows/[email protected] | ||
|
||
integration: | ||
needs: [mdl, yamllint, delivery] | ||
needs: lint-unit | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
os: | ||
- 'amazonlinux-2' | ||
- 'centos-7' | ||
- 'centos-8' | ||
- 'debian-9' | ||
- 'ubuntu-1604' | ||
- 'ubuntu-1804' | ||
- "almalinux-8" | ||
- "amazonlinux-2" | ||
- "centos-7" | ||
- "centos-stream-8" | ||
- "debian-10" | ||
- "debian-11" | ||
- "fedora-latest" | ||
- "rockylinux-8" | ||
- "ubuntu-1804" | ||
- "ubuntu-2004" | ||
suite: | ||
- 'server' | ||
- 'server-verification' | ||
- 'server-verify-no-databag' | ||
- "server" | ||
- "server-verification" | ||
- "server-verify-no-databag" | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
- name: Install Chef | ||
uses: actionshub/chef-install@main | ||
uses: actionshub/chef-install@2.0.4 | ||
- name: Dokken | ||
uses: actionshub/test-kitchen@main | ||
uses: actionshub/test-kitchen@2.1.0 | ||
env: | ||
CHEF_LICENSE: accept-no-persist | ||
KITCHEN_LOCAL_YAML: kitchen.dokken.yml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
config: | ||
ul-indent: false # MD007 | ||
line-length: false # MD013 | ||
no-duplicate-heading: false # MD024 | ||
reference-links-images: false # MD052 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"chef-software.chef", | ||
"rebornix.ruby", | ||
"editorconfig.editorconfig" | ||
"chef-software.chef", | ||
"rebornix.ruby", | ||
"editorconfig.editorconfig", | ||
"DavidAnson.vscode-markdownlint" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
driver: | ||
name: dokken | ||
privileged: true | ||
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %> | ||
|
||
transport: { name: dokken } | ||
provisioner: { name: dokken } | ||
|
||
platforms: | ||
- name: almalinux-8 | ||
driver: | ||
image: dokken/almalinux-8 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: almalinux-9 | ||
driver: | ||
image: dokken/almalinux-9 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: amazonlinux-2023 | ||
driver: | ||
image: dokken/amazonlinux-2023 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: centos-7 | ||
driver: | ||
image: dokken/centos-7 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: centos-stream-8 | ||
driver: | ||
image: dokken/centos-stream-8 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: centos-stream-9 | ||
driver: | ||
image: dokken/centos-stream-9 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: debian-9 | ||
driver: | ||
image: dokken/debian-9 | ||
pid_one_command: /bin/systemd | ||
|
||
- name: debian-10 | ||
driver: | ||
image: dokken/debian-10 | ||
pid_one_command: /bin/systemd | ||
|
||
- name: debian-11 | ||
driver: | ||
image: dokken/debian-11 | ||
pid_one_command: /bin/systemd | ||
|
||
- name: debian-12 | ||
driver: | ||
image: dokken/debian-12 | ||
pid_one_command: /bin/systemd | ||
|
||
- name: fedora-latest | ||
driver: | ||
image: dokken/fedora-latest | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: opensuse-leap-15 | ||
driver: | ||
image: dokken/opensuse-leap-15 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: oraclelinux-7 | ||
driver: | ||
image: dokken/oraclelinux-7 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: oraclelinux-8 | ||
driver: | ||
image: dokken/oraclelinux-8 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: oraclelinux-9 | ||
driver: | ||
image: dokken/oraclelinux-9 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: rockylinux-8 | ||
driver: | ||
image: dokken/rockylinux-8 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: rockylinux-9 | ||
driver: | ||
image: dokken/rockylinux-9 | ||
pid_one_command: /usr/lib/systemd/systemd | ||
|
||
- name: ubuntu-18.04 | ||
driver: | ||
image: dokken/ubuntu-18.04 | ||
pid_one_command: /bin/systemd | ||
|
||
- name: ubuntu-20.04 | ||
driver: | ||
image: dokken/ubuntu-20.04 | ||
pid_one_command: /bin/systemd | ||
|
||
- name: ubuntu-22.04 | ||
driver: | ||
image: dokken/ubuntu-22.04 | ||
pid_one_command: /bin/systemd | ||
|
||
- name: ubuntu-23.04 | ||
driver: | ||
image: dokken/ubuntu-23.04 | ||
pid_one_command: /bin/systemd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
driver: { name: exec } | ||
transport: { name: exec } | ||
|
||
platforms: | ||
- name: macos-latest | ||
- name: windows-latest |
Oops, something went wrong.