Skip to content

Commit 42005d3

Browse files
author
Satish Ramachandran
committed
Add support for external contracts for ACI
1 parent 13272ff commit 42005d3

File tree

2 files changed

+28
-11
lines changed

2 files changed

+28
-11
lines changed

netmaster/objApi/apiController.go

+11-9
Original file line numberDiff line numberDiff line change
@@ -343,10 +343,10 @@ func endpointGroupCleanup(endpointGroup *contivModel.EndpointGroup) {
343343
policy.Write()
344344
}
345345

346-
// Cleanup any external contracts
346+
// Cleanup any external contracts
347347
err = extContracts.CleanupExternalContracts(endpointGroup)
348348
if err != nil {
349-
return err
349+
log.Errorf("Error cleaning up external contracts for epg %s", endpointGroup.Key)
350350
}
351351

352352
// Remove the endpoint group from network and tenant link sets.
@@ -397,12 +397,6 @@ func (ac *APIController) EndpointGroupCreate(endpointGroup *contivModel.Endpoint
397397
return err
398398
}
399399

400-
// Setup external contracts this EPG might have.
401-
err = extContracts.SetupExternalContracts(endpointGroup, endpointGroup.ConsExtContractsGrps, endpointGroup.ProvExtContractsGrps)
402-
if err != nil {
403-
return err
404-
}
405-
406400
// for each policy create an epg policy Instance
407401
for _, policyName := range endpointGroup.Policies {
408402
policyKey := endpointGroup.TenantName + ":" + policyName
@@ -434,6 +428,14 @@ func (ac *APIController) EndpointGroupCreate(endpointGroup *contivModel.Endpoint
434428
}
435429
}
436430

431+
// Setup external contracts this EPG might have.
432+
err = extContracts.SetupExternalContracts(endpointGroup, endpointGroup.ConsExtContractsGrps, endpointGroup.ProvExtContractsGrps)
433+
if err != nil {
434+
log.Errorf("Error setting up external contracts for epg %s", endpointGroup.Key)
435+
endpointGroupCleanup(endpointGroup)
436+
return err
437+
}
438+
437439
// Setup links
438440
modeldb.AddLink(&endpointGroup.Links.Network, network)
439441
modeldb.AddLink(&endpointGroup.Links.Tenant, tenant)
@@ -1194,7 +1196,7 @@ func (ac *APIController) ExtContractsGroupDelete(contractsGroup *contivModel.Ext
11941196

11951197
// At this moment, we let the external contracts to be deleted only
11961198
// if there are no consumers of this external contracts group
1197-
if isExtContractsGroupUsed(contractsGroup) == true {
1199+
if extContracts.IsExtContractsGroupUsed(contractsGroup) == true {
11981200
log.Errorf("Error: External contracts groups is being used: %s", contractsGroup.ContractsGroupName)
11991201
return core.Errorf("External contracts group is in-use")
12001202
}

utils/extContracts/extContracts.go

+17-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,10 @@ func CleanupExternalContracts(endpointGroup *contivModel.EndpointGroup) error {
9292
contractsGrp := contivModel.FindExtContractsGroup(consExtContractsGrp)
9393
err := extContractsGrpDeregister(endpointGroup, contractsGrp, "consumed")
9494
if err != nil {
95-
return err
95+
if contractsGrp != nil {
96+
log.Errorf("Error cleaning up consumed ext contract %s", contractsGrp.ContractsGroupName)
97+
}
98+
continue
9699
}
97100
}
98101

@@ -101,7 +104,10 @@ func CleanupExternalContracts(endpointGroup *contivModel.EndpointGroup) error {
101104
contractsGrp := contivModel.FindExtContractsGroup(provExtContractsGrp)
102105
err := extContractsGrpDeregister(endpointGroup, contractsGrp, "provided")
103106
if err != nil {
104-
return err
107+
if contractsGrp != nil {
108+
log.Errorf("Error cleaning up provided ext contract %s", contractsGrp.ContractsGroupName)
109+
}
110+
continue
105111
}
106112
}
107113

@@ -131,3 +137,12 @@ func SetupExternalContracts(endpointGroup *contivModel.EndpointGroup,
131137

132138
return nil
133139
}
140+
141+
// Check if the external contracts are being used by any of the EPGs.
142+
func IsExtContractsGroupUsed(contractsGroup *contivModel.ExtContractsGroup) bool {
143+
if len(contractsGroup.LinkSets.EndpointGroups) > 0 {
144+
return true
145+
}
146+
147+
return false
148+
}

0 commit comments

Comments
 (0)