.kitchen.yml 835 B

123456789101112131415161718192021222324252627282930313233
  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: Debian-jessie
  14. driver:
  15. box: debian/jessie64
  16. - name: Debian-wheezy
  17. driver:
  18. box: debian/wheezy64 #chef/debian-7.8
  19. - name: Ubuntu-trusty
  20. driver:
  21. box: ubuntu/trusty64
  22. suites:
  23. - name: supernode
  24. provisioner:
  25. playbook: "test/application/supernode.yml"
  26. extra_vars: {'kitchen_connection': 'smart'}
  27. # - name : group
  28. # provisioner :
  29. # playbook : "test/application/group.yml"
  30. # extra_vars : { 'kitchen_connection': 'smart' }