-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.0.18 - is_file_root support & other tweaks, see CHANGE.md
- Loading branch information
Simon McCartney
committed
Jun 12, 2014
1 parent
efcfd0d
commit dcccf8d
Showing
7 changed files
with
151 additions
and
98 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
v0.0.18 | ||
* Added ability to filter paths from the set of files copied to the guest | ||
See https://github.com/simonmcc/kitchen-salt/blob/master/provisioner_options.md#salt_copy_filter | ||
* Added is_file_root flag - treat this project as a complete file_root. | ||
See https://github.com/simonmcc/kitchen-salt/blob/master/provisioner_options.md#is_file_root | ||
* Pillar data specified using the pillars-from-files option are no longer | ||
passed through YAML.load/.to_yaml | ||
This was causing subtle data transformations with unexpected results when | ||
the reuslting yaml was consumed by salt | ||
* Added "Data failed to compile" and "No matching sls found for" to | ||
strings we watch salt-call output for signs of failure | ||
|
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 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
RVM give you the willies? | ||
|
||
|
||
Try this, start with Debian Testing/Jessie and add the bits of ruby we need: | ||
|
||
# PREREQ: install Vagrant from http://www.vagrantup.com/ | ||
# install enough for a sensible ruby execution environment | ||
sudo apt-get install ruby bundler git | ||
|
||
Now lets get a sample salt repo that's been prepared for test-kitchen: | ||
|
||
git clone https://github.com/simonmcc/beaver-formula.git | ||
cd beaver-formula/ | ||
|
||
|
||
|
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,5 +1,5 @@ | ||
module Kitchen | ||
module Salt | ||
VERSION = "0.0.17" | ||
VERSION = "0.0.18" | ||
end | ||
end |
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