@@ -25,6 +25,7 @@ import (
25
25
"github.com/contiv/contivmodel"
26
26
"github.com/contiv/netplugin/core"
27
27
"github.com/contiv/netplugin/drivers"
28
+ "github.com/contiv/netplugin/netmaster/docknet"
28
29
"github.com/contiv/netplugin/netmaster/gstate"
29
30
"github.com/contiv/netplugin/netmaster/intent"
30
31
"github.com/contiv/netplugin/netmaster/master"
@@ -984,6 +985,22 @@ func (ac *APIController) EndpointGroupDelete(endpointGroup *contivModel.Endpoint
984
985
endpointGroup .GroupName , endpointGroup .Links .AppProfile .ObjKey )
985
986
}
986
987
988
+ // In swarm-mode work-flow, if epg is mapped to a docker network, reject the delete
989
+ if master .GetClusterMode () == master .SwarmMode {
990
+ dnet , err := docknet .GetDocknetState (endpointGroup .TenantName , endpointGroup .NetworkName , endpointGroup .GroupName )
991
+ if err == nil {
992
+ return fmt .Errorf ("cannot delete group %s mapped to docker network %s" ,
993
+ endpointGroup .GroupName , dnet .DocknetUUID )
994
+ }
995
+ if ! strings .Contains (strings .ToLower (err .Error ()), "key not found" ) {
996
+ log .Errorf ("Error getting docknet state for %s.%s. (retval = %s)" ,
997
+ endpointGroup .TenantName , endpointGroup .GroupName , err .Error ())
998
+ return err
999
+ }
1000
+ log .Infof ("No docknet state for %s.%s. (retval = %s)" ,
1001
+ endpointGroup .TenantName , endpointGroup .GroupName , err .Error ())
1002
+ }
1003
+
987
1004
// get the netprofile structure by finding the netprofile
988
1005
profileKey := GetNetprofileKey (endpointGroup .TenantName , endpointGroup .NetProfile )
989
1006
netprofile := contivModel .FindNetprofile (profileKey )
@@ -1172,6 +1189,22 @@ func (ac *APIController) NetworkDelete(network *contivModel.Network) error {
1172
1189
network .NetworkName , svcCount )
1173
1190
}
1174
1191
1192
+ // In swarm-mode work-flow, if this is mapped to a docker network, reject delete
1193
+ if master .GetClusterMode () == master .SwarmMode {
1194
+ docknet , err := docknet .GetDocknetState (network .TenantName , network .NetworkName , "" )
1195
+ if err == nil {
1196
+ return fmt .Errorf ("cannot delete network %s mapped to docker network %s" ,
1197
+ network .NetworkName , docknet .DocknetUUID )
1198
+ }
1199
+ if ! strings .Contains (strings .ToLower (err .Error ()), "key not found" ) {
1200
+ log .Errorf ("Error getting docknet state for %s.%s. (retval = %s)" ,
1201
+ network .TenantName , network .NetworkName , err .Error ())
1202
+ return err
1203
+ }
1204
+ log .Infof ("No docknet state for %s.%s. (retval = %s)" ,
1205
+ network .TenantName , network .NetworkName , err .Error ())
1206
+ }
1207
+
1175
1208
// Remove link
1176
1209
modeldb .RemoveLinkSet (& tenant .LinkSets .Networks , network )
1177
1210
0 commit comments