Skip to content

Commit cc0ee2e

Browse files
Hawkzillachestack
authored andcommittedOct 8, 2024
Allow per node attach multiple nics for a network
1 parent c1c31ea commit cc0ee2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎pkg/openstack/eni/node.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ func (n *Node) CreateInterface(ctx context.Context, allocation *ipam.AllocationA
100100
}
101101

102102
n.mutex.RLock()
103-
if len(n.poolsEnis[pool]) > 0 {
104-
return 0, errUnableToCreateENI, errors.New("no more pool eni slot")
105-
}
103+
//if len(n.poolsEnis[pool]) > 0 {
104+
// return 0, errUnableToCreateENI, errors.New("no more pool eni slot")
105+
//}
106106
resource := *n.k8sObj
107107
n.mutex.RUnlock()
108108

0 commit comments

Comments
 (0)
Please sign in to comment.