Skip to content

Commit 30e5f84

Browse files
author
Vipin Jain
committed
add list of endpoints in network oper
1 parent 2b89513 commit 30e5f84

File tree

4 files changed

+31
-123
lines changed

4 files changed

+31
-123
lines changed

client/contivModel.js

+12-111
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,7 @@ var EndpointGroupSummaryView = React.createClass({
187187
<ModalTrigger modal={<EndpointGroupModalView endpointGroup={ endpointGroup }/>}>
188188
<tr key={ endpointGroup.key } className="info">
189189

190-
191-
<td>{ endpointGroup.extContractsGrps }</td>
192-
193-
<td>{ endpointGroup.groupName }</td>
194-
195-
<td>{ endpointGroup.networkName }</td>
196-
197-
<td>{ endpointGroup.policies }</td>
198-
190+
199191
</tr>
200192
</ModalTrigger>
201193
);
@@ -207,11 +199,7 @@ var EndpointGroupSummaryView = React.createClass({
207199
<thead>
208200
<tr>
209201

210-
211-
<th> External contracts </th>
212-
<th> Group name </th>
213-
<th> Network </th>
214-
<th> Policies </th>
202+
215203
</tr>
216204
</thead>
217205
<tbody>
@@ -262,13 +250,7 @@ var ExtContractsGroupSummaryView = React.createClass({
262250
<ModalTrigger modal={<ExtContractsGroupModalView extContractsGroup={ extContractsGroup }/>}>
263251
<tr key={ extContractsGroup.key } className="info">
264252

265-
266-
<td>{ extContractsGroup.contractsGroupName }</td>
267-
268-
<td>{ extContractsGroup.contractsType }</td>
269-
270-
<td>{ extContractsGroup.tenantName }</td>
271-
253+
272254
</tr>
273255
</ModalTrigger>
274256
);
@@ -280,10 +262,7 @@ var ExtContractsGroupSummaryView = React.createClass({
280262
<thead>
281263
<tr>
282264

283-
284-
<th> Contracts group name </th>
285-
<th> Contracts type </th>
286-
<th> Tenant name </th>
265+
287266
</tr>
288267
</thead>
289268
<tbody>
@@ -332,11 +311,7 @@ var GlobalSummaryView = React.createClass({
332311
<ModalTrigger modal={<GlobalModalView global={ global }/>}>
333312
<tr key={ global.key } className="info">
334313

335-
336-
<td>{ global.name }</td>
337-
338-
<td>{ global.networkInfraType }</td>
339-
314+
340315
</tr>
341316
</ModalTrigger>
342317
);
@@ -348,9 +323,7 @@ var GlobalSummaryView = React.createClass({
348323
<thead>
349324
<tr>
350325

351-
352-
<th> name of this block(must be 'global') </th>
353-
<th> Network infrastructure type </th>
326+
354327
</tr>
355328
</thead>
356329
<tbody>
@@ -399,23 +372,7 @@ var NetworkSummaryView = React.createClass({
399372
<ModalTrigger modal={<NetworkModalView network={ network }/>}>
400373
<tr key={ network.key } className="info">
401374

402-
403-
<td>{ network.encap }</td>
404-
405-
<td>{ network.gateway }</td>
406-
407-
<td>{ network.ipv6Gateway }</td>
408-
409-
<td>{ network.ipv6Subnet }</td>
410-
411-
<td>{ network.networkName }</td>
412-
413-
<td>{ network.nwType }</td>
414-
415-
<td>{ network.pktTag }</td>
416-
417-
<td>{ network.subnet }</td>
418-
375+
419376
</tr>
420377
</ModalTrigger>
421378
);
@@ -427,15 +384,7 @@ var NetworkSummaryView = React.createClass({
427384
<thead>
428385
<tr>
429386

430-
431-
<th> Encapsulation </th>
432-
<th> Gateway </th>
433-
<th> IPv6Gateway </th>
434-
<th> IPv6Subnet </th>
435-
<th> Network name </th>
436-
<th> Network Type </th>
437-
<th> Vlan/Vxlan Tag </th>
438-
<th> Subnet </th>
387+
439388
</tr>
440389
</thead>
441390
<tbody>
@@ -494,11 +443,7 @@ var PolicySummaryView = React.createClass({
494443
<ModalTrigger modal={<PolicyModalView policy={ policy }/>}>
495444
<tr key={ policy.key } className="info">
496445

497-
498-
<td>{ policy.policyName }</td>
499-
500-
<td>{ policy.tenantName }</td>
501-
446+
502447
</tr>
503448
</ModalTrigger>
504449
);
@@ -510,9 +455,7 @@ var PolicySummaryView = React.createClass({
510455
<thead>
511456
<tr>
512457

513-
514-
<th> Policy Name </th>
515-
<th> Tenant Name </th>
458+
516459
</tr>
517460
</thead>
518461
<tbody>
@@ -557,35 +500,7 @@ var RuleSummaryView = React.createClass({
557500
<ModalTrigger modal={<RuleModalView rule={ rule }/>}>
558501
<tr key={ rule.key } className="info">
559502

560-
561-
<td>{ rule.action }</td>
562-
563-
<td>{ rule.direction }</td>
564-
565-
<td>{ rule.fromEndpointGroup }</td>
566-
567-
<td>{ rule.fromIpAddress }</td>
568-
569-
<td>{ rule.fromNetwork }</td>
570-
571-
<td>{ rule.policyName }</td>
572-
573-
<td>{ rule.port }</td>
574-
575-
<td>{ rule.priority }</td>
576-
577-
<td>{ rule.protocol }</td>
578-
579-
<td>{ rule.ruleId }</td>
580-
581-
<td>{ rule.tenantName }</td>
582-
583-
<td>{ rule.toEndpointGroup }</td>
584-
585-
<td>{ rule.toIpAddress }</td>
586-
587-
<td>{ rule.toNetwork }</td>
588-
503+
589504
</tr>
590505
</ModalTrigger>
591506
);
@@ -597,21 +512,7 @@ var RuleSummaryView = React.createClass({
597512
<thead>
598513
<tr>
599514

600-
601-
<th> Action </th>
602-
<th> Direction </th>
603-
<th> From Endpoint Group </th>
604-
<th> IP Address </th>
605-
<th> From Network </th>
606-
<th> Policy Name </th>
607-
<th> Port No </th>
608-
<th> Priority </th>
609-
<th> Protocol </th>
610-
<th> Rule Id </th>
611-
<th> Tenant Name </th>
612-
<th> To Endpoint Group </th>
613-
<th> IP Address </th>
614-
<th> To Network </th>
515+
615516
</tr>
616517
</thead>
617518
<tbody>

client/contivModelClient.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -316,12 +316,13 @@ type NetworkLinks struct {
316316
}
317317

318318
type NetworkOper struct {
319-
AllocatedAddressesCount int `json:"allocatedAddressesCount,omitempty"` // Vlan/Vxlan Tag
320-
AllocatedIPAddresses string `json:"allocatedIPAddresses,omitempty"` // allocated IP addresses
321-
DnsServerIP string `json:"dnsServerIP,omitempty"` // dns IP for the network
322-
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
323-
NumEndpoints int `json:"numEndpoints,omitempty"` // external packet tag
324-
PktTag int `json:"pktTag,omitempty"` // internal packet tag
319+
AllocatedAddressesCount int `json:"allocatedAddressesCount,omitempty"` // Vlan/Vxlan Tag
320+
AllocatedIPAddresses string `json:"allocatedIPAddresses,omitempty"` // allocated IP addresses
321+
DnsServerIP string `json:"dnsServerIP,omitempty"` // dns IP for the network
322+
Endpoints []EndpointOper `json:"endpoints,omitempty"`
323+
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
324+
NumEndpoints int `json:"numEndpoints,omitempty"` // external packet tag
325+
PktTag int `json:"pktTag,omitempty"` // internal packet tag
325326

326327
}
327328

contivModel.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,13 @@ type NetworkLinks struct {
190190
}
191191

192192
type NetworkOper struct {
193-
AllocatedAddressesCount int `json:"allocatedAddressesCount,omitempty"` // Vlan/Vxlan Tag
194-
AllocatedIPAddresses string `json:"allocatedIPAddresses,omitempty"` // allocated IP addresses
195-
DnsServerIP string `json:"dnsServerIP,omitempty"` // dns IP for the network
196-
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
197-
NumEndpoints int `json:"numEndpoints,omitempty"` // external packet tag
198-
PktTag int `json:"pktTag,omitempty"` // internal packet tag
193+
AllocatedAddressesCount int `json:"allocatedAddressesCount,omitempty"` // Vlan/Vxlan Tag
194+
AllocatedIPAddresses string `json:"allocatedIPAddresses,omitempty"` // allocated IP addresses
195+
DnsServerIP string `json:"dnsServerIP,omitempty"` // dns IP for the network
196+
Endpoints []EndpointOper `json:"endpoints,omitempty"`
197+
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
198+
NumEndpoints int `json:"numEndpoints,omitempty"` // external packet tag
199+
PktTag int `json:"pktTag,omitempty"` // internal packet tag
199200

200201
}
201202

network.json

+5
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@
8888
"dnsServerIP": {
8989
"type": "string",
9090
"title": "dns IP for the network"
91+
},
92+
"endpoints": {
93+
"type": "array",
94+
"items": "endpoint",
95+
"title": "endpoints in the network"
9196
}
9297
},
9398
"link-sets": {

0 commit comments

Comments
 (0)