playbook.yml 367 B

1234567891011121314151617181920
  1. ---
  2. - name: test connection to vagrant boxes
  3. hosts: all
  4. tasks:
  5. - debug: msg=ok
  6. - name: build nebula binaries locally
  7. connection: local
  8. hosts: localhost
  9. tasks:
  10. - command: chdir=../../../ make bin-vagrant
  11. tags:
  12. - build-nebula
  13. - name: install nebula on all vagrant hosts
  14. hosts: all
  15. become: yes
  16. gather_facts: yes
  17. roles:
  18. - nebula