Skip to content

Commit d18ee7c

Browse files
committed
fix broken anchors
Signed-off-by: Mengxin Liu <[email protected]>
1 parent 607bbf9 commit d18ee7c

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

Diff for: docs/advance/vip.en.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,4 +223,4 @@ spec:
223223

224224
Due to the particularity of 'StatefulSet' and 'VM', after their Pod is destroyed and pulled up, it will re-use the previously set VIP.
225225

226-
VM retention VIP needs to ensure that 'kube-ovn-controller' 'keep-vm-ip' parameter is' true '. Please refer to [Kubevirt VM enable keep its ip](../guide/setup-options.en.md#kubevirt-vm)
226+
VM retention VIP needs to ensure that 'kube-ovn-controller' 'keep-vm-ip' parameter is' true '. Please refer to [Kubevirt VM enable keep its ip](../guide/setup-options.en.md#kubevirt-vm-fixed-address-settings)

Diff for: docs/advance/with-bgp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Kube-OVN 支持将 Pods、Subnets、Services 和 EIPs 的 IP 地址通过 BGP 协议向外部进行路由广播,从而使得外部可以直接访问到集群内的 IP 地址。
44
如果需要使用该功能,需要在特定节点安装 `kube-ovn-speaker` 并对需要对外暴露的 Pod 或 Subnet 增加对应的 annotation。
55

6-
如果要在 EIP 上使用 BGP,需要使用特殊参数创建 VPC NAT Gateway,有关更多信息,请参阅[发布 EIPs](#发布-eips)
6+
如果要在 EIP 上使用 BGP,需要使用特殊参数创建 VPC NAT Gateway,有关更多信息,请参阅[发布 EIPs](#eips)
77

88
## 安装 kube-ovn-speaker
99

@@ -73,7 +73,7 @@ kubectl annotate pod sample ovn.kubernetes.io/bgp-
7373
kubectl annotate subnet ovn-default ovn.kubernetes.io/bgp-
7474
```
7575

76-
查看[发布策略](#发布策略)以了解如何通过设置注解来控制 BGP 对外发布策略。
76+
查看[发布策略](#_1)以了解如何通过设置注解来控制 BGP 对外发布策略。
7777

7878
## 发布 `ClusterIP` 类型 Service 路由
7979

Diff for: docs/advance/with-ovn-ic.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -254,13 +254,13 @@ switch da6138b8-de81-4908-abf9-b2224ec4edf3 (ts)
254254

255255
下面手动设置路由,在该例子中,集群 `az1` 内的子网 CIDR 为 `10.16.0.0/24`,集群 `az2` 内的子网 CIDR 为 `10.17.0.0/24`
256256

257-
在集群 `az1` 设置到集群 `az2` 的路由:
257+
在集群 `az1` 设置到集群 `az2` 的路由
258258

259259
```bash
260260
kubectl ko nbctl lr-route-add ovn-cluster 10.17.0.0/24 169.254.100.31
261261
```
262262

263-
在集群 `az2` 设置到集群 `az1` 的路由:
263+
在集群 `az2` 设置到集群 `az1` 的路由
264264

265265
```bash
266266
kubectl ko nbctl lr-route-add ovn-cluster 10.16.0.0/24 169.254.100.79
@@ -272,7 +272,7 @@ kubectl ko nbctl lr-route-add ovn-cluster 10.16.0.0/24 169.254.100.79
272272

273273
优先推荐方案 1,Kube-OVN v1.11.16 之后支持。
274274

275-
方法同[单节点部署方案 1](#单节点部署方案-1)
275+
方法同[单节点部署方案 1](#1)
276276

277277
### 高可用部署方案 2
278278

@@ -292,8 +292,8 @@ docker run --name=ovn-ic-db -d --env "ENABLE_OVN_LEADER_CHECK="false"" --network
292292
ctr -n k8s.io run -d --env "ENABLE_OVN_LEADER_CHECK="false"" --net-host --privileged --mount="type=bind,src=/etc/ovn/,dst=/etc/ovn,options=rbind:rw" --mount="type=bind,src=/var/run/ovn,dst=/var/run/ovn,options=rbind:rw" --mount="type=bind,src=/var/log/ovn,dst=/var/log/ovn,options=rbind:rw" --env="NODE_IPS="192.168.65.3,192.168.65.2,192.168.65.1"" --env="LOCAL_IP="192.168.65.3"" docker.io/kubeovn/kube-ovn:{{ variables.version }} ovn-ic-db bash start-ic-db.sh
293293
```
294294

295-
- `LOCAL_IP` 当前容器所在节点 IP 地址。
296-
- `NODE_IPS` 运行 `OVN-IC` 数据库的三个节点 IP 地址,使用逗号进行分隔。
295+
- `LOCAL_IP`:当前容器所在节点 IP 地址。
296+
- `NODE_IPS`:运行 `OVN-IC` 数据库的三个节点 IP 地址,使用逗号进行分隔。
297297

298298
接下来,在另外两个节点部署 `OVN-IC` 数据库的 follower。
299299

@@ -309,8 +309,8 @@ docker run --name=ovn-ic-db -d --network=host --privileged -v /etc/ovn/:/etc/ovn
309309
ctr -n k8s.io run -d --net-host --privileged --mount="type=bind,src=/etc/ovn/,dst=/etc/ovn,options=rbind:rw" --mount="type=bind,src=/var/run/ovn,dst=/var/run/ovn,options=rbind:rw" --mount="type=bind,src=/var/log/ovn,dst=/var/log/ovn,options=rbind:rw" --env="NODE_IPS="192.168.65.3,192.168.65.2,192.168.65.1"" --env="LOCAL_IP="192.168.65.2"" --env="LEADER_IP="192.168.65.3"" docker.io/kubeovn/kube-ovn:{{ variables.version }} ovn-ic-db bash start-ic-db.sh
310310
```
311311

312-
- `LOCAL_IP` 当前容器所在节点 IP 地址。
313-
- `NODE_IPS` 运行 `OVN-IC` 数据库的三个节点 IP 地址,使用逗号进行分隔。
312+
- `LOCAL_IP`:当前容器所在节点 IP 地址。
313+
- `NODE_IPS`:运行 `OVN-IC` 数据库的三个节点 IP 地址,使用逗号进行分隔。
314314
- `LEADER_IP`: 运行 `OVN-IC` 数据库 leader 节点的 IP 地址。
315315

316316
在每个集群创建 `ovn-ic-config` 时指定多个 `OVN-IC` 数据库节点地址:
@@ -333,9 +333,9 @@ data:
333333

334334
## 支持集群互联 ECMP
335335

336-
前提控制器是按照[单节点部署方案 1](#单节点部署方案-1)部署
336+
前提控制器是按照[单节点部署方案 1](#1)部署
337337

338-
该方案默认支持集群互联 ECMP,ECMP path 默认为 3,同时也支持修改 ECMP path 条数,使用命令:
338+
该方案默认支持集群互联 ECMP,ECMP path 默认为 3,同时也支持修改 ECMP path 条数,使用命令
339339

340340
```bash
341341
kubectl edit deployment ovn-ic-server -n kube-system

Diff for: docs/guide/subnet.en.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ EOF
140140
- `excludeIps`: The address list is reserved so that the container network will not automatically assign addresses in the list, which can be used as a fixed IP address assignment segment or to avoid conflicts with existing devices in the physical network in Underlay mode.
141141
- `gateway`:For this subnet gateway address, Kube-OVN will automatically assign the corresponding logical gateway in Overlay mode, and the address should be the underlying physical gateway address in Underlay mode.
142142
- `namespaces`: Bind the list of Namespace for this Subnet. Pods under the Namespace will be assigned addresses from the current Subnet after binding.
143-
- `routeTable`: Associate the route table, default is main table, route table definition please defer to [Static Routes](vpc.en.md#_3)
143+
- `routeTable`: Associate the route table, default is main table, route table definition please defer to [Static Routes](vpc.en.md#static-routes)
144144

145145
### Create Pod in the Subnet
146146

Diff for: docs/guide/vpc.en.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ spec:
368368
- `policy`: Supports destination routing `policyDst` and source routing `policySrc`.
369369
- When there are overlapping routing rules, the rule with the longer CIDR mask has higher priority,
370370
and if the mask length is the same, the destination route has a higher priority over the source route.
371-
- `routeTable`: You can store the route in specific table, default is main table. Associate with subnet please defer to [Create Custom Subnets](subnet.en.md/#_5)
371+
- `routeTable`: You can store the route in specific table, default is main table. Associate with subnet please defer to [Create Custom Subnets](subnet.en.md/#create-custom-subnets)
372372

373373
### Policy Routes
374374

0 commit comments

Comments
 (0)