.kitchen.yml 801 B

1234567891011121314151617181920212223242526
  1. ---
  2. driver_plugin: vagrant
  3. platforms:
  4. - name: ubuntu-12.04
  5. driver_config:
  6. box: canonical-ubuntu-12.04
  7. box_url: http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box
  8. require_chef_omnibus: true
  9. - name: ubuntu-10.04
  10. driver_config:
  11. box: opscode-ubuntu-10.04
  12. box_url: http://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-10.04_chef-11.2.0.box
  13. - name: centos-6.3
  14. driver_config:
  15. box: opscode-centos-6.3
  16. box_url: http://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-6.3_chef-11.2.0.box
  17. - name: centos-5.8
  18. driver_config:
  19. box: opscode-centos-5.8
  20. box_url: http://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-5.8_chef-11.2.0.box
  21. suites:
  22. - name: default
  23. run_list: ["recipe[dovecot]"]
  24. attributes: {}