Kitchen::PolicyfileNodes
Provisioner policyfile_nodes extends policyfile_zero by adding one more step in the end of converge - it downloads the resulted node
JSON object to the nodes_path on the host machine after successful converge over SSH. It allows you to use this node object for searches while converging another
Test Kitchen suites. So, you can use actual node IP addresses to communicate nodes with each other.
For example, 'web' node need to search 'db' node ip.
In policyfile_zero we have to create mock in node_path for this search. policyfile_nodes will create mock automatically.
Requirements
- ChefDK 0.10.0+
Installation
gem install kitchen-policyfile-nodes
Configuration
Use policyfile_nodes instead of policyfile_zero for the kitchen provisioner name.
provisioner:
name: policyfile_nodes
Development
- Source hosted at GitHub
- Report issues/questions/feature requests on GitHub Issues
Pull requests are very welcome! Make sure your patches are well tested. Ideally create a topic branch for every separate change you make. For example:
- Fork the repo
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Added some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
Testing
- Run
bundle install - Run
rakefor unit testing
Authors
Created and maintained by Andrei Skopenko ([email protected])
License
Apache 2.0 (see LICENSE)