mirror of
https://github.com/slackhq/nebula.git
synced 2025-01-26 09:58:49 +00:00
5c126cd42b
* conform to new build format for vagrant
23 lines
443 B
YAML
23 lines
443 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 build/linux-amd64/"{{ item }}"
|
|
with_items:
|
|
- nebula
|
|
- nebula-cert
|
|
tags:
|
|
- build-nebula
|
|
|
|
- name: install nebula on all vagrant hosts
|
|
hosts: all
|
|
become: yes
|
|
gather_facts: yes
|
|
roles:
|
|
- nebula
|