jasonbin

.kitchen.yml

Dec 20th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.78 KB | None | 0 0
  1. ---
  2. driver:
  3.   name: vagrant
  4.  
  5. provisioner:
  6.   name: chef_zero
  7.   # You may wish to disable always updating cookbooks in CI or other testing environments.
  8.   # For example:
  9.   #   always_update_cookbooks: <%= !ENV['CI'] %>
  10.   always_update_cookbooks: true
  11.  
  12. verifier:
  13.   name: inspec
  14.  
  15. platforms:
  16.   - name: ubuntu1-16.04
  17.     driver:
  18.       box: bento/ubuntu-16.04
  19.       network:
  20.        - ["private_network", {ip: "172.31.63.61"}]
  21.   - name: ubuntu2-16.04
  22.     driver:
  23.       box: bento/ubuntu-16.04
  24.       network:
  25.        - ["private_network", {ip: "172.31.63.65"}]
  26.  
  27. suites:
  28.   - name: default
  29.     run_list:
  30.       - recipe[hdeploy::default]
  31.       - recipe[hdeploy::supervisor]
  32.       - recipe[hdeploy::celery]
  33.     verifier:
  34.       inspec_tests:
  35.         - test/recipes
  36.     attributes:
Advertisement
Add Comment
Please, Sign In to add comment