-
Notifications
You must be signed in to change notification settings - Fork 0
/
topology.yml
43 lines (40 loc) · 1.07 KB
/
topology.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
name: cicd
mgmt:
network: cicd_network
ipv4-subnet: 172.0.0.0/24
topology:
nodes:
# leafs
leaf1:
kind: ceos
image: ceos:4.32.2F
mgmt-ipv4: 172.0.0.11
startup-config: device_configs/configs/leaf1.cfg
leaf2:
kind: ceos
image: ceos:4.32.2F
mgmt-ipv4: 172.0.0.12
startup-config: device_configs/configs/leaf2.cfg
leaf3:
kind: ceos
image: ceos:4.32.2F
mgmt-ipv4: 172.0.0.13
startup-config: device_configs/configs/leaf3.cfg
# spines
spine1:
kind: ceos
image: ceos:4.32.2F
startup-config: device_configs/configs/spine1.cfg
mgmt-ipv4: 172.0.0.21
spine2:
kind: ceos
image: ceos:4.32.2F
startup-config: device_configs/configs/spine2.cfg
mgmt-ipv4: 172.0.0.22
links:
- endpoints: ["spine1:eth1", "leaf1:eth1"]
- endpoints: ["spine1:eth2", "leaf2:eth1"]
- endpoints: ["spine1:eth3", "leaf3:eth1"]
- endpoints: ["spine2:eth1", "leaf1:eth2"]
- endpoints: ["spine2:eth2", "leaf2:eth2"]
- endpoints: ["spine2:eth3", "leaf3:eth2"]