blob: b54ae4d398e28294cba8610731d375d0f578dc0b [file] [log] [blame]
Mahir Gunyele1e1ca12022-11-28 00:48:23 -08001---
2
Joey Armstrong003e83e2023-01-09 20:23:48 -05003 # Copyright 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors
Mahir Gunyele1e1ca12022-11-28 00:48:23 -08004 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Automated deployment configuration for Tucson pod
18
19 # Change default values in tests
20 ONOS_REST_PORT: 30120
21 ONOS_SSH_PORT: 30115
22 OLT_PORT: 9191
23 KUBERNETES_CONF: $HOME/.kube/kind-config-voltha-minimal
24
25# This tells the control node how to reach the Kubernetes nodes.
26 nodes:
27 -
28 ip: '10.34.90.43'
29 user: 'community'
30 pass: 'admin'
31 -
32 ip: '10.34.90.41'
33 user: 'community'
34 pass: 'admin'
35 -
36 ip: '10.34.90.42'
37 user: 'community'
38 pass: 'admin'
39
40 fabric_switches: []
41 # The switch is shared across 2 PODs, thus is externally controlled
42 # -
43 # mac: '8c:ea:1b:a7:29:72'
44 # ip: 10.34.90.55
45 # user: root
46 # pass: onl
47 # bngPort: 157
48 # device_id: 'of:0000000000000001'
49
50 olts:
51 # Gpon OLT
52 -
53 ip: 10.34.90.50
54 sship: 10.34.90.50
55 user: root
56 pass: onl
57 fortygig: False
58 aggPort: 2
59 serial: EC1912001823
60 oltDebVersion: openolt_asgvolt64-3.7.4-3b190f027136e845c5850a5b1a97897ce2b74ebf-100G-NNI.deb
61 board_technology: GPON
62
63 hosts:
Mahir Gunyel23c1e832022-11-28 12:33:36 -080064 src:
65 -
66 ip: 10.34.90.43
67 user: community
68 pass: admin
69 dp_iface_name: eth1.35
70 container_type: LXC
71 container_name: SCOM00001c82
72 onu: SCOM00001c82
73 olt: EC1912001823
74 c_tag: 801
75 s_tag: 111
76 power_switch_port: 1
77 onu_type: 'scom'
78 service_type: 'hsia'
79 uni_id: 1
80 -
81 ip: 10.34.90.43
82 user: community
83 pass: admin
84 dp_iface_name: eth1.65
85 container_type: LXC
86 container_name: SCOM00001c82
87 onu: SCOM00001c82
88 olt: EC1912001823
89 c_tag: 444
90 s_tag: 333
91 power_switch_port: 1
92 onu_type: 'scom'
93 service_type: 'voip'
94 uni_id: 1
95 -
96 ip: 10.34.90.43
97 user: community
98 pass: admin
99 dp_iface_name: eth1.55
100 container_type: LXC
101 container_name: SCOM00001c82
102 onu: SCOM00001c82
103 olt: EC1912001823
104 c_tag: 55
105 s_tag: 555
106 power_switch_port: 1
107 onu_type: 'scom'
108 service_type: 'vod'
109 uni_id: 1
110 -
111 ip: '10.34.90.43'
112 user: 'community'
113 pass: 'admin'
114 dp_iface_name: 'eth1.55'
115 container_type: LXC
116 container_name: SCOM00001c82
117 onu: 'SCOM00001c82'
118 olt: 'EC1912001823'
119 c_tag: '55'
120 s_tag: '550'
121 power_switch_port: 1
122 onu_type: 'scom'
123 mcast_rg: '10.11.6.3/24'
124 mcast_grp_subnet_mask: '224.0.0.0/4'
125 service_type: 'mcast'
126 uni_id: '1'
127 dst:
128 -
129 #HSI
130 ip: null
131 user: null
132 pass: null
133 dp_iface_name: ens1f0
134 dp_iface_ip_qinq: '10.11.1.254'
135 dp_iface_ip: null
136 dp_iface_gateway: null
137 container_type: null
138 container_name: null
139 -
140 #VOIP
141 ip: null
142 user: null
143 pass: null
144 noroot_ip: '10.34.90.43'
145 noroot_user: community
146 noroot_pass: admin
147 dp_iface_name: ens1f0
148 dp_iface_ip_qinq: '10.11.4.254'
149 dp_iface_ip: null
150 dp_iface_gateway: null
151 container_type: null
152 container_name: null
153 -
154 #VOD
155 ip: null
156 user: null
157 pass: null
158 noroot_ip: '10.34.90.43'
159 noroot_user: community
160 noroot_pass: admin
161 dp_iface_name: ens1f0
162 dp_iface_ip_qinq: '10.11.5.254'
163 dp_iface_ip: null
164 dp_iface_gateway: null
165 container_type: null
166 container_name: null
167 -
168 #MCAST
169 ip: null
170 user: null
171 pass: null
172 bng_ip: '10.34.90.43'
173 bng_user: community
174 bng_pass: admin
175 dp_iface_name: null
176 dp_iface_ip_qinq: '225.22.0.2'
177 dp_iface_ip: null
178 dp_iface_gateway: null
179 container_type: null
180 container_name: null
181
Mahir Gunyele1e1ca12022-11-28 00:48:23 -0800182 web_power_switch:
183 ip: '10.34.90.48'
184 user: 'admin'
185 password: 'secret'
186 type: 'EPC'