forked from JNPRAutomate/ansible-junos-evpn-vxlan
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pb.conf.all.yaml
69 lines (63 loc) · 1.61 KB
/
pb.conf.all.yaml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
- include: pb.init.make_clean.yaml
############################################################
- name: Create and apply configuration for Leaf QFX / L2
hosts: leaf-qfx-l2
connection: local
gather_facts: no
pre_tasks:
- include_vars: "{{ topology_file }}"
roles:
- common
- underlay-ebgp
- overlay-evpn-qfx-l2
- overlay-evpn-access
- build-config
############################################################
- name: Create and apply configuration for Leaf QFX / L3
hosts: leaf-qfx-l3
connection: local
gather_facts: no
pre_tasks:
- include_vars: "{{ topology_file }}"
roles:
- common
- underlay-ebgp
- overlay-evpn-qfx-l3
- overlay-evpn-access
- build-config
############################################################
- name: Create and apply configuration for Spines / MX
hosts: spine-mx
connection: local
gather_facts: no
pre_tasks:
- include_vars: "{{ topology_file }}"
roles:
- common
- underlay-ebgp
- overlay-evpn-mx-l3
- build-config
############################################################
- name: Create and apply configuration for Spines / QFX
hosts: spine-qfx
connection: local
gather_facts: no
pre_tasks:
- include_vars: "{{ topology_file }}"
roles:
- common
- underlay-ebgp
- overlay-evpn-qfx-l3
- build-config
############################################################
- name: Create and apply configuration for Fabric
hosts: fabric
connection: local
gather_facts: no
pre_tasks:
- include_vars: "{{ topology_file }}"
roles:
- common
- underlay-ebgp
- build-config