Skip to content

Commit 69402bc

Browse files
author
Joji Mekkatt
committed
Add config support for host private subnet
1 parent 7bceb00 commit 69402bc

5 files changed

+20
-3
lines changed

client/contivModel.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ var GlobalSummaryView = React.createClass({
378378
<ModalTrigger modal={<GlobalModalView global={ global }/>}>
379379
<tr key={ global.key } className="info">
380380

381-
381+
382382
</tr>
383383
</ModalTrigger>
384384
);
@@ -390,7 +390,7 @@ var GlobalSummaryView = React.createClass({
390390
<thead>
391391
<tr>
392392

393-
393+
394394
</tr>
395395
</thead>
396396
<tbody>
@@ -418,6 +418,8 @@ var GlobalModalView = React.createClass({
418418

419419
<Input type='text' label='Network infrastructure type' ref='networkInfraType' defaultValue={obj.networkInfraType} placeholder='Network infrastructure type' />
420420

421+
<Input type='text' label='Private Subnet used by host bridge' ref='pvtSubnet' defaultValue={obj.pvtSubnet} placeholder='Private Subnet used by host bridge' />
422+
421423
<Input type='text' label='Allowed vlan range' ref='vlans' defaultValue={obj.vlans} placeholder='Allowed vlan range' />
422424

423425
<Input type='text' label='Allwed vxlan range' ref='vxlans' defaultValue={obj.vxlans} placeholder='Allwed vxlan range' />

client/contivModelClient.go

+1
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,7 @@ type Global struct {
393393
FwdMode string `json:"fwdMode,omitempty"` // Forwarding Mode
394394
Name string `json:"name,omitempty"` // name of this block(must be 'global')
395395
NetworkInfraType string `json:"networkInfraType,omitempty"` // Network infrastructure type
396+
PvtSubnet string `json:"pvtSubnet,omitempty"` // Private Subnet used by host bridge
396397
Vlans string `json:"vlans,omitempty"` // Allowed vlan range
397398
Vxlans string `json:"vxlans,omitempty"` // Allwed vxlan range
398399

client/contivModelClient.py

+1
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ def createGlobal(self, obj):
319319
"fwdMode": obj.fwdMode,
320320
"name": obj.name,
321321
"networkInfraType": obj.networkInfraType,
322+
"pvtSubnet": obj.pvtSubnet,
322323
"vlans": obj.vlans,
323324
"vxlans": obj.vxlans,
324325
})

contivModel.go

+6
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ type Global struct {
195195
FwdMode string `json:"fwdMode,omitempty"` // Forwarding Mode
196196
Name string `json:"name,omitempty"` // name of this block(must be 'global')
197197
NetworkInfraType string `json:"networkInfraType,omitempty"` // Network infrastructure type
198+
PvtSubnet string `json:"pvtSubnet,omitempty"` // Private Subnet used by host bridge
198199
Vlans string `json:"vlans,omitempty"` // Allowed vlan range
199200
Vxlans string `json:"vxlans,omitempty"` // Allwed vxlan range
200201

@@ -3112,6 +3113,11 @@ func ValidateGlobal(obj *Global) error {
31123113
return errors.New("networkInfraType string invalid format")
31133114
}
31143115

3116+
pvtSubnetMatch := 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})/16$")
3117+
if pvtSubnetMatch.MatchString(obj.PvtSubnet) == false {
3118+
return errors.New("pvtSubnet string invalid format")
3119+
}
3120+
31153121
vlansMatch := regexp.MustCompile("^([0-9]{1,4}?-[0-9]{1,4}?)$")
31163122
if vlansMatch.MatchString(obj.Vlans) == false {
31173123
return errors.New("vlans string invalid format")

global.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,14 @@
4444
"length": 64,
4545
"format": "^(proxy|flood)?$",
4646
"ShowSummary": true
47-
}
47+
},
48+
"pvtSubnet": {
49+
"type": "string",
50+
"format": "^((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})/16$",
51+
"title": "Private Subnet used by host bridge",
52+
"showSummary": true
53+
}
54+
4855
},
4956
"operProperties": {
5057
"numNetworks": {

0 commit comments

Comments
 (0)