@@ -445,10 +445,7 @@ func (oc *ovsController) UpdateEgressNetworkPolicyRules(policies []networkapi.Eg
445
445
otx .DeleteFlows ("table=101, reg0=%d" , vnid )
446
446
otx .AddFlow ("table=101, reg0=%d, priority=1, actions=drop" , vnid )
447
447
} else /* vnid != 0 && len(policies) == 1 */ {
448
- // Temporarily drop all outgoing traffic, to avoid race conditions while modifying the other rules
449
- otx .AddFlow ("table=101, reg0=%d, cookie=1, priority=65535, actions=drop" , vnid )
450
- otx .DeleteFlows ("table=101, reg0=%d, cookie=0/1" , vnid )
451
-
448
+ var flows []string
452
449
dnsFound := false
453
450
for i , rule := range policies [0 ].Spec .Egress {
454
451
priority := len (policies [0 ].Spec .Egress ) - i
@@ -482,10 +479,17 @@ func (oc *ovsController) UpdateEgressNetworkPolicyRules(policies []networkapi.Eg
482
479
dst = fmt .Sprintf (", nw_dst=%s" , selector )
483
480
}
484
481
485
- otx . AddFlow ("table=101, reg0=%d, priority=%d, ip%s, actions=%s" , vnid , priority , dst , action )
482
+ flows = append ( flows , fmt . Sprintf ("table=101, reg0=%d, priority=%d, ip%s, actions=%s" , vnid , priority , dst , action ) )
486
483
}
487
484
}
488
485
486
+ // Temporarily drop all outgoing traffic, to avoid race conditions while modifying the other rules
487
+ otx .AddFlow ("table=101, reg0=%d, cookie=1, priority=65535, actions=drop" , vnid )
488
+ otx .DeleteFlows ("table=101, reg0=%d, cookie=0/1" , vnid )
489
+ for _ , f := range flows {
490
+ otx .AddFlow (f )
491
+ }
492
+
489
493
if dnsFound {
490
494
if err := common .CheckDNSResolver (); err != nil {
491
495
inputErr = fmt .Errorf ("DNS resolver failed: %v, dropping all traffic for namespace: %q" , err , namespaces [0 ])
0 commit comments