forked from test-kitchen/test-kitchen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ashique Saidalavi <[email protected]>
- Loading branch information
Showing
3 changed files
with
11 additions
and
10 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
Validating CODEOWNERS rules …
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 +1,2 @@ | ||
@test-kitchen/maintainers | ||
* @chef/chef-workstation-owners @chef/chef-workstation-approvers @chef/chef-workstation-reviewers | ||
*.md @chef/docs-team |
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,15 +1,17 @@ | ||
# Test Kitchen | ||
# Chef Test Kitchen Enterprise | ||
|
||
[![Gem Version](https://badge.fury.io/rb/test-kitchen.svg)](http://badge.fury.io/rb/test-kitchen) | ||
[![Build Status](https://dev.azure.com/test-kitchen/test-kitchen/_apis/build/status/test-kitchen.test-kitchen?branchName=main)](https://dev.azure.com/test-kitchen/test-kitchen/_build/latest?definitionId=6&branchName=main) | ||
|
||
This is the fork of [test-kitchen/test-kitchen](https://github.com/test-kitchen/test-kitchen/) repository and rebranded into Chef Test Kitchen Enterprise. | ||
|
||
| | | | ||
| ----------- | --------------------------------------------------------------------------------| | ||
| Website | [https://kitchen.ci/][website] | | ||
| Source Code | [https://kitchen.ci/docs/getting-started/introduction/][guide] | | ||
| Slack | [#test-kitchen][slack] channel on Chef Community Slack | | ||
|
||
**Test Kitchen is an integration tool for developing and testing infrastructure code and software on isolated target platforms.** | ||
**Chef Test Kitchen Enterprise is an integration tool for developing and testing infrastructure code and software on isolated target platforms.** | ||
|
||
## Getting Started Guide | ||
|
||
|
@@ -20,14 +22,12 @@ If you want to get going super fast, then try the Quick Start next... | |
|
||
## Quick Start | ||
|
||
Test Kitchen is a RubyGem and can be installed with: | ||
|
||
To install the new Chef Test Kitchen Enterprise, first ensure you have the latest Habitat installer. You can then run the `hab pkg install` command to install it. | ||
```shell | ||
Check failure on line 26 in README.md GitHub Actions / markdown-lintFenced code blocks should be surrounded by blank lines
|
||
gem install test-kitchen | ||
hab pkg install chef/chef-test-kitchen-enterprise --binlink --force | ||
``` | ||
Check failure on line 28 in README.md GitHub Actions / markdown-lintFenced code blocks should be surrounded by blank lines
|
||
|
||
If you use Bundler, you can add `gem "test-kitchen"` to your Gemfile and make | ||
sure to run `bundle install`. | ||
The option `--binlink` can be used to create a symlink to the binary in a directory that is in your PATH. | ||
The option `--force` can be used to overwrite the existing binaries. | ||
|
||
Next add support to your library, Chef cookbook, or empty project with `kitchen | ||
init`: | ||
|