We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My provisioner looks like this:
provisioner: name: salt_solo salt_version: 2016.11 is_file_root: true local_salt_root: . state_top_from_file: true pillars_from_directories: - pillar
When doing the converge, this code block is executed:
converge
kitchen-salt/lib/kitchen-salt/pillars.rb
Lines 32 to 39 in 673b07e
In my case, it failed because my local_salt_root did not have a pillar directory.
local_salt_root
pillar
If I add:
pillars: fake.sls: []
It works as expected. I would expect everything to work if I only define pillars_from_directories in my provisioner.
pillars_from_directories
The text was updated successfully, but these errors were encountered:
Thanks for reporting, I will get this fixed.
Sorry, something went wrong.
No branches or pull requests
My provisioner looks like this:
When doing the
converge
, this code block is executed:kitchen-salt/lib/kitchen-salt/pillars.rb
Lines 32 to 39 in 673b07e
In my case, it failed because my
local_salt_root
did not have apillar
directory.If I add:
It works as expected. I would expect everything to work if I only define
pillars_from_directories
in my provisioner.The text was updated successfully, but these errors were encountered: