-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_nebula.yml
49 lines (42 loc) · 995 Bytes
/
get_nebula.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
- name: Install or update nebula
hosts: all
become: true
roles:
- name: quara.sysadmin.get_nebula
vars:
nebula_version: 1.5.2
# Firewall rules
nebula_firewall_inboud:
# Allow ping
- port: any
proto: icmp
host: any
# Allow iperf tests
- port: 5201
proto: any
host: any
# Allow SSH access
- port: 22
proto: tcp
host: any
# Allow HTTP access
- port: 80
proto: tcp
host: any
# Allow HTTPS access
- port: 443
proto: tcp
host: any
# Allow NATS access
- port: 4222
proto: tcp
host: any
# Allow MongoDB access
- port: 27017
proto: tcp
host: any
# Allow debug access
- port: 8080
proto: tcp
host: any