Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 2.14.9 #73

Merged
merged 2 commits into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/Release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@

*如有源码需求,可联系F5支持人员,获取源码zip文件。*

## Release: **2.14.9-20230901**

### Docker Image

[f5devcentral/k8s-bigip-ctlr-c:2.14.9-20230901](https://hub.docker.com/r/f5devcentral/k8s-bigip-ctlr-c)

[f5devcentral/cis-c-as3-parser:latest](https://hub.docker.com/r/f5devcentral/cis-c-as3-parser)

### Release Notes

* 优化已下发资源持久化性能。[commit](https://gitlab.f5net.com/cis-c/f5-kic/-/commit/3d77a73e45d1117a6f20ddc2b4d9a5e8b82d1622)
* 修复Flannel VXLAN模式下的ARP创建、删除异常。[commit](https://gitlab.f5net.com/cis-c/f5-kic/-/commit/ee0f269c3a2468b306889bb8917f837184186653)
* 增强DevOps:/dumps中增加启动时间标记[commit](https://gitlab.f5net.com/cis-c/f5-kic/-/commit/d4d206a30a77211ba156aa1cb1c4dfd187a99196)和事件队列状态[commit](https://gitlab.f5net.com/cis-c/f5-kic/-/commit/3d77a73e45d1117a6f20ddc2b4d9a5e8b82d1622)

## Release: **2.14.8-20230811**

### Docker Image
Expand Down
10 changes: 5 additions & 5 deletions docs/Use-Cases/cis-and-cis-c.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

> 提示1:如果您从低于`2.9.1-20220831`(含)升级到更新版本CIS-C,CIS-C会自动将已写入`/Common`partition下的ARP条目修改到`cis-c-tenant`下,`cis-c-tenant`由CIS-C启动时自动创建(当发现其不存在时)。目前,该partition没有参数化;该partition依旧可用于下发用户配置,但不同于其他partition,在删除配置时,它不会被删除,请**尽量**避开此partition下发用户配置。

> 提示2:对于CIS-C低于或等于`2.9.1-20220831`的版本,您也可以选择修改CIS的默认ARP写入partition来避免冲突问题,例如,将启动设置`--flannel-name=/Common/flannel_vxlan`修改为`--flannel-name=/k8s/flannel_vxlan`,则相应ARP条目会写入到k8s partition下(k8s是一个提前手工建立好的partition)。此操作在生产环境操作需谨慎。 在本文以下的案例中使用的是即是修改CIS的参数方式。
> 提示2:对于CIS-C低于或等于`2.9.1-20220831`的版本,您也可以选择修改CIS的默认ARP写入partition来避免冲突问题,例如,将启动设置`--flannel-name=/Common/fl-tunnel`修改为`--flannel-name=/k8s/fl-tunnel`,则相应ARP条目会写入到k8s partition下(k8s是一个提前手工建立好的partition)。此操作在生产环境操作需谨慎。 在本文以下的案例中使用的是即是修改CIS的参数方式。

* 非Overlay CNI环境或CIS与CIS-C对接不同BIG-IP场景时,无考虑上述静态ARP问题以及目标partition问题

Expand Down Expand Up @@ -175,7 +175,7 @@ data:
- --insecure=true
- --log-level=INFO
- --http-listen-address=0.0.0.0:9113
- --flannel-name=/k8s/flannel_vxlan
- --flannel-name=/k8s/fl-tunnel
```


Expand All @@ -189,7 +189,7 @@ data:
- --bigip-password=$(BIGIP_PASSWORD)
- --bigip-url=https://172.16.20.205
- --log-level=debug
- --flannel-name=flannel_vxlan
- --flannel-name=fl-tunnel
- --namespace=cis-c-hub
- --hub-mode=true
- --ignore-service-port
Expand Down Expand Up @@ -350,7 +350,7 @@ data:
- --insecure=true
- --log-level=INFO
- --http-listen-address=0.0.0.0:9113
- --flannel-name=/k8s/flannel_vxlan
- --flannel-name=/k8s/fl-tunnel
```


Expand All @@ -364,7 +364,7 @@ data:
- --bigip-password=$(BIGIP_PASSWORD)
- --bigip-url=https://172.16.20.205
- --log-level=debug
- --flannel-name=flannel_vxlan
- --flannel-name=fl-tunnel
- --namespace=as3-1 <<<<< as3-1 namespace
- --hub-mode=false <<<<< 非hub模式
- --ignore-service-port
Expand Down
2 changes: 1 addition & 1 deletion docs/quick-start/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ Cilium vxlan模式下,我们需要在BIG-IP侧创建相同的vxlan tunnel,
VNI 2 是 Cilium 的保留ID。

```shell
$ tmsh create net tunnels tunnel flannel_vxlan key 2 profile fl-vxlan local-address 10.169.72.34
$ tmsh create net tunnels tunnel fl-tunnel key 2 profile fl-vxlan local-address 10.169.72.34
```

* tunnel 静态FDB 信息为0a:0a:0x:0x:0x:0x的形式,其中0x:0x:0x:0x部分为K8S各node节点16进制的IP地址。
Expand Down