-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from jrwesolo/add-support-chef-17
Add support for Chef 17
- Loading branch information
Showing
9 changed files
with
119 additions
and
59 deletions.
There are no files selected for viewing
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,25 @@ | ||
Testing | ||
======= | ||
|
||
Testing was performed using [Chef Workstation 20.12.205][1]. | ||
|
||
``` | ||
$ chef --version | ||
Chef Workstation version: 20.12.205 | ||
Chef Infra Client version: 16.8.14 | ||
Chef InSpec version: 4.24.8 | ||
Chef CLI version: 3.0.33 | ||
Chef Habitat version: 1.6.181 | ||
Test Kitchen version: 2.8.0 | ||
Cookstyle version: 7.3.11 | ||
``` | ||
|
||
Perform tests using the following commands: | ||
|
||
```bash | ||
chef exec cookstyle # linting | ||
chef exec rspec # spec tests | ||
chef exec kitchen test # integration tests | ||
``` | ||
|
||
[1]: https://downloads.chef.io/products/workstation/stable?v=20.12.205 |
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,5 @@ | ||
default['setup']['owner'] = 'nobody' | ||
default['setup']['group'] = value_for_platform_family( | ||
'debian' => 'nogroup', | ||
'default' => 'nobody' | ||
) |
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