This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a kitchen flag that gives options for different kitchen configs
To provide support out-of-the-box for kitchen-dokken there is a flag now to specify which base kitchen configuration to use. Signed-off-by: Franklin Webber <franklin@chef.io>
- Loading branch information
Franklin Webber
committed
Mar 8, 2018
1 parent
0de8e36
commit 9df4e0f
Showing
3 changed files
with
45 additions
and
1 deletion.
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
31 changes: 31 additions & 0 deletions
31
lib/chef-dk/skeletons/code_generator/templates/default/kitchen_dokken.yml.erb
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,31 @@ | ||
--- | ||
driver: | ||
name: dokken | ||
|
||
provisioner: | ||
name: dokken | ||
|
||
transport: | ||
name: dokken | ||
|
||
verifier: | ||
name: inspec | ||
|
||
platforms: | ||
# @see https://github.com/someara/dokken-images | ||
# @see https://hub.docker.com/r/dokken/ | ||
- name: ubuntu-16.04 | ||
driver: | ||
image: dokken/ubuntu-16.04 | ||
- name: centos-7 | ||
driver: | ||
image: dokken/centos-7 | ||
|
||
suites: | ||
- name: default | ||
run_list: | ||
- recipe[<%= cookbook_name %>::default] | ||
verifier: | ||
inspec_tests: | ||
- test/integration/default | ||
attributes: |