2019-11-19 18:00:20 +01:00
|
|
|
---
|
|
|
|
- name: test connection to vagrant boxes
|
|
|
|
hosts: all
|
|
|
|
tasks:
|
|
|
|
- debug: msg=ok
|
|
|
|
|
|
|
|
- name: build nebula binaries locally
|
|
|
|
connection: local
|
|
|
|
hosts: localhost
|
|
|
|
tasks:
|
2020-01-08 20:32:28 +01:00
|
|
|
- command: chdir=../../../ make build/linux-amd64/"{{ item }}"
|
|
|
|
with_items:
|
|
|
|
- nebula
|
|
|
|
- nebula-cert
|
2019-11-19 18:00:20 +01:00
|
|
|
tags:
|
|
|
|
- build-nebula
|
|
|
|
|
|
|
|
- name: install nebula on all vagrant hosts
|
|
|
|
hosts: all
|
|
|
|
become: yes
|
|
|
|
gather_facts: yes
|
|
|
|
roles:
|
|
|
|
- nebula
|