We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44af000 commit bee5e0aCopy full SHA for bee5e0a
internal/controller/clbbinding.go
@@ -633,7 +633,10 @@ LOOP_PORT:
633
}
634
allocatedPorts = append(allocatedPorts, allocated...)
635
} else { // 只要有一个端口分配失败就认为失败
636
- releasePorts() // 为保证事务性,释放已分配的端口
+ releasePorts() // 为保证事务性,释放已分配的端口
637
+ for poolName := range allocatedPools { // 通知关联的端口池对账,如果启用自动创建 clb,可触发 lb 扩容
638
+ notifyPortPoolReconcile(poolName)
639
+ }
640
return portpool.ErrNoPortAvailable
641
642
0 commit comments