.kitchen.yml 881 B

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. driver:
  3. name: vagrant
  4. provisioner:
  5. name : ansible_push
  6. verbose : "vvvv"
  7. ansible_config : "test/ansible.cfg"
  8. idempotency_test : False
  9. sudo : True
  10. #chef_bootstrap_url : False
  11. #extra_vars : "@kitchen_vars.yml"
  12. platforms:
  13. - name: Ubuntu-precise
  14. driver:
  15. box: ubuntu/precise64
  16. - name: Debian-jessie
  17. driver:
  18. box: debian/jessie64
  19. - name: Debian-wheezy
  20. driver:
  21. box: debian/wheezy64
  22. - name: Ubuntu-trusty
  23. driver:
  24. box: ubuntu/trusty64
  25. suites:
  26. - name: fastd
  27. provisioner:
  28. playbook: "test/application/fastd.yml"
  29. extra_vars: {'kitchen_connection': 'smart'}
  30. # - name : group
  31. # provisioner :
  32. # playbook : "test/application/group.yml"
  33. # extra_vars : { 'kitchen_connection': 'smart' }