-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
47 lines (44 loc) · 861 Bytes
/
Copy pathcompose.yml
File metadata and controls
47 lines (44 loc) · 861 Bytes
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
networks:
NSO-net:
ipam:
config:
- subnet: ${SUBNET}
gateway: ${GATEWAY}
driver: ipvlan
driver_opts:
ipvlan_mode: l2
parent: ${PARENT_INTERFACE:-ens160}
services:
NODE-1:
container_name: ${NODE1}
hostname: ${NODE1}
networks:
NSO-net:
ipv4_address: ${NODE1_IP}
extends:
file: common-services.yml
service: NSO
profiles:
- nso
NODE-2:
container_name: ${NODE2}
hostname: ${NODE2}
networks:
NSO-net:
ipv4_address: ${NODE2_IP}
extends:
file: common-services.yml
service: NSO
profiles:
- nso
NODE-3:
container_name: ${NODE3}
hostname: ${NODE3}
networks:
NSO-net:
ipv4_address: ${NODE3_IP}
extends:
file: common-services.yml
service: NSO
profiles:
- nso