mirror of
https://github.com/slackhq/nebula.git
synced 2025-02-23 23:14:35 +08:00
21 lines
367 B
YAML
21 lines
367 B
YAML
|
---
|
||
|
- name: test connection to vagrant boxes
|
||
|
hosts: all
|
||
|
tasks:
|
||
|
- debug: msg=ok
|
||
|
|
||
|
- name: build nebula binaries locally
|
||
|
connection: local
|
||
|
hosts: localhost
|
||
|
tasks:
|
||
|
- command: chdir=../../../ make bin-vagrant
|
||
|
tags:
|
||
|
- build-nebula
|
||
|
|
||
|
- name: install nebula on all vagrant hosts
|
||
|
hosts: all
|
||
|
become: yes
|
||
|
gather_facts: yes
|
||
|
roles:
|
||
|
- nebula
|