Skip to content

Commit bb05161

Browse files
pkeerthanashaleman
pkeerthana
authored andcommitted
Add infra-nw support (#15)
* Add infra-nw support * update review comments
1 parent d83fae6 commit bb05161

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

client/contivModel.js

+5
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,8 @@ var NetworkSummaryView = React.createClass({
282282

283283
<td>{ network.networkName }</td>
284284

285+
<td>{ network.nwType }</td>
286+
285287
<td>{ network.pktTag }</td>
286288

287289
<td>{ network.subnet }</td>
@@ -301,6 +303,7 @@ var NetworkSummaryView = React.createClass({
301303
<th> Encapsulation </th>
302304
<th> Gateway </th>
303305
<th> Network name </th>
306+
<th> Network Type </th>
304307
<th> Vlan/Vxlan Tag </th>
305308
<th> Subnet </th>
306309
</tr>
@@ -328,6 +331,8 @@ var NetworkModalView = React.createClass({
328331

329332
<Input type='text' label='Network name' ref='networkName' defaultValue={obj.networkName} placeholder='Network name' />
330333

334+
<Input type='text' label='Network Type' ref='nwType' defaultValue={obj.nwType} placeholder='Network Type' />
335+
331336
<Input type='text' label='Vlan/Vxlan Tag' ref='pktTag' defaultValue={obj.pktTag} placeholder='Vlan/Vxlan Tag' />
332337

333338
<Input type='text' label='Subnet' ref='subnet' defaultValue={obj.subnet} placeholder='Subnet' />

client/contivModelClient.go

+1
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ type Network struct {
225225
Encap string `json:"encap,omitempty"` // Encapsulation
226226
Gateway string `json:"gateway,omitempty"` // Gateway
227227
NetworkName string `json:"networkName,omitempty"` // Network name
228+
NwType string `json:"nwType,omitempty"` // Network Type
228229
PktTag int `json:"pktTag,omitempty"` // Vlan/Vxlan Tag
229230
Subnet string `json:"subnet,omitempty"` // Subnet
230231
TenantName string `json:"tenantName,omitempty"` // Tenant Name

contivModel.go

+6
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ type Network struct {
9494
Encap string `json:"encap,omitempty"` // Encapsulation
9595
Gateway string `json:"gateway,omitempty"` // Gateway
9696
NetworkName string `json:"networkName,omitempty"` // Network name
97+
NwType string `json:"nwType,omitempty"` // Network Type
9798
PktTag int `json:"pktTag,omitempty"` // Vlan/Vxlan Tag
9899
Subnet string `json:"subnet,omitempty"` // Subnet
99100
TenantName string `json:"tenantName,omitempty"` // Tenant Name
@@ -1873,6 +1874,11 @@ func ValidateNetwork(obj *Network) error {
18731874
return errors.New("networkName string too long")
18741875
}
18751876

1877+
nwTypeMatch := regexp.MustCompile("^(infra|data)$")
1878+
if nwTypeMatch.MatchString(obj.NwType) == false {
1879+
return errors.New("nwType string invalid format")
1880+
}
1881+
18761882
subnetMatch := regexp.MustCompile("^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$")
18771883
if subnetMatch.MatchString(obj.Subnet) == false {
18781884
return errors.New("subnet string invalid format")

network.json

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@
1717
"title": "Tenant Name",
1818
"length": 64
1919
},
20+
"nwType": {
21+
"type": "string",
22+
"format": "^(infra|data)$",
23+
"title": "Network Type",
24+
"showSummary": true
25+
},
2026
"encap": {
2127
"type": "string",
2228
"format": "^(vlan|vxlan)$",

0 commit comments

Comments
 (0)