@@ -26,7 +26,8 @@ import (
26
26
)
27
27
28
28
const (
29
- contivNPChain = "CONTIV-NODEPORT"
29
+ contivNPChain = "CONTIV-NODEPORT"
30
+ iptablesWaitLock = "5"
30
31
)
31
32
32
33
// Presence indicates presence of an item
@@ -52,8 +53,8 @@ func NewNodeProxy() (*NodeSvcProxy, error) {
52
53
}
53
54
54
55
// Install contiv chain and jump
55
- out , err := osexec .Command (ipTablesPath , "-t " , "nat" , "-N" ,
56
- contivNPChain ).CombinedOutput ()
56
+ out , err := osexec .Command (ipTablesPath , "-w " , iptablesWaitLock ,
57
+ "-t" , "nat" , "-N" , contivNPChain ).CombinedOutput ()
57
58
if err != nil {
58
59
if ! strings .Contains (string (out ), "Chain already exists" ) {
59
60
log .Errorf ("Failed to setup contiv nodeport chain %v out: %s" ,
@@ -62,13 +63,13 @@ func NewNodeProxy() (*NodeSvcProxy, error) {
62
63
}
63
64
}
64
65
65
- _ , err = osexec .Command (ipTablesPath , "-t " , "nat " , "-C " ,
66
- "PREROUTING" , "-m" , "addrtype" , "--dst-type" , "LOCAL" , "-j" ,
66
+ _ , err = osexec .Command (ipTablesPath , "-w " , iptablesWaitLock , "-t " , "nat " ,
67
+ "-C" , " PREROUTING" , "-m" , "addrtype" , "--dst-type" , "LOCAL" , "-j" ,
67
68
contivNPChain ).CombinedOutput ()
68
69
if err != nil {
69
- out , err = osexec .Command (ipTablesPath , "-t " , "nat" , "-I" ,
70
- "PREROUTING " , "-m " , "addrtype " , "--dst-type " , "LOCAL " , "-j " ,
71
- contivNPChain ).CombinedOutput ()
70
+ out , err = osexec .Command (ipTablesPath , "-w " , iptablesWaitLock ,
71
+ "-t " , "nat" , "-I " , "PREROUTING " , "-m " , "addrtype " , "--dst-type " ,
72
+ "LOCAL" , "-j" , contivNPChain ).CombinedOutput ()
72
73
if err != nil {
73
74
log .Errorf ("Failed to setup contiv nodeport chain jump %v out: %s" ,
74
75
err , out )
@@ -78,7 +79,7 @@ func NewNodeProxy() (*NodeSvcProxy, error) {
78
79
79
80
// Flush any old rules we might have added. They will get re-added
80
81
// if the service is still active
81
- osexec .Command (ipTablesPath , "-t" , "nat" , "-F" ,
82
+ osexec .Command (ipTablesPath , "-w" , iptablesWaitLock , "- t" , "nat" , "-F" ,
82
83
contivNPChain ).CombinedOutput ()
83
84
84
85
proxy := NodeSvcProxy {}
@@ -200,8 +201,8 @@ func (p *NodeSvcProxy) SvcProviderUpdate(svcName string, providers []string) {
200
201
}
201
202
202
203
func (p * NodeSvcProxy ) execNATRule (act , dport , dest string ) (string , error ) {
203
- out , err := osexec .Command (p .ipTablesPath , "-t " , "nat" , act ,
204
- contivNPChain , "-p" , "tcp" , "-m" , "tcp" , "--dport" ,
204
+ out , err := osexec .Command (p .ipTablesPath , "-w " , iptablesWaitLock ,
205
+ "-t" , "nat" , act , contivNPChain , "-p" , "tcp" , "-m" , "tcp" , "--dport" ,
205
206
dport , "-j" , "DNAT" , "--to-destination" ,
206
207
dest ).CombinedOutput ()
207
208
return string (out ), err
0 commit comments