Skip to content

Commit

Permalink
Release cce-network-v2/2.11.8
Browse files Browse the repository at this point in the history
  • Loading branch information
gola committed Nov 22, 2024
1 parent af0b2fe commit e5804d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cce-network-v2/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.11.7
2.11.8
3 changes: 3 additions & 0 deletions cce-network-v2/docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ v2 版本新架构,支持VPC-ENI 辅助IP和vpc路由。版本发布历史如
新特性功能:
1. 新特性:容器内支持分配 RDMA 子网卡及 RDMA 辅助IP。

#### 2.11.8 [20241101]
1. [Bug] 修复 agent 在初始化 ENI 缺少 mac 地址时,会给 lo 网卡重命名的问题

#### 2.11.7 [20241031]
1. [Optimize] 增加 ENI 主 IP 获取流程,避免新节点缺少主 IP 无法就绪的问题

Expand Down
5 changes: 5 additions & 0 deletions cce-network-v2/pkg/bce/agent/eni_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ func (eh *eniInitFactory) OnUpdateENI(oldObj, newObj *ccev2.ENI) error {
return nil
}

if resource.Spec.MacAddress == "" {
scopedLog.Debug("mac address is empty, skip update ENI")
return nil
}

// downward compatibility with BBC models
// TODO 2021-03-08: remove this after BBC secondary models are deprecated
if resource.Spec.Type == ccev2.ENIForBBC {
Expand Down

0 comments on commit e5804d2

Please sign in to comment.