From 1d4577e4b9fb5a4f268265bb3ba9362da8f5c7d7 Mon Sep 17 00:00:00 2001 From: Daniel Qian Date: Tue, 10 Nov 2020 09:50:21 +0800 Subject: [PATCH 1/2] add flannel backend port configuration example Sometimes the default 8472/udp port will conflict with virtualization platform, and we need to change it, while the doc doesn't mention that. --- .../en/config-options/add-ons/network-plugins/_index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/rke/latest/en/config-options/add-ons/network-plugins/_index.md b/content/rke/latest/en/config-options/add-ons/network-plugins/_index.md index 7da2af08643..b57188beacf 100644 --- a/content/rke/latest/en/config-options/add-ons/network-plugins/_index.md +++ b/content/rke/latest/en/config-options/add-ons/network-plugins/_index.md @@ -43,6 +43,8 @@ network: options: canal_iface: eth1 canal_flannel_backend_type: vxlan + # must be 4789 if using Flannel VxLan mode in the cluster with Windows nodes + canal_flannel_backend_port: "8472" ``` #### Canal Interface @@ -58,6 +60,8 @@ network: options: flannel_iface: eth1 flannel_backend_type: vxlan + # must be 4789 if using VxLan mode in the cluster with Windows nodes + flannel_backend_port: "8472" ``` #### Flannel Interface From 37593a2f533ffef4fcc998c2741e9ef22251a6aa Mon Sep 17 00:00:00 2001 From: Daniel Qian Date: Tue, 15 Dec 2020 07:47:58 +0800 Subject: [PATCH 2/2] Update _index.md --- .../latest/en/config-options/add-ons/network-plugins/_index.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/rke/latest/en/config-options/add-ons/network-plugins/_index.md b/content/rke/latest/en/config-options/add-ons/network-plugins/_index.md index b57188beacf..df822f84527 100644 --- a/content/rke/latest/en/config-options/add-ons/network-plugins/_index.md +++ b/content/rke/latest/en/config-options/add-ons/network-plugins/_index.md @@ -43,7 +43,6 @@ network: options: canal_iface: eth1 canal_flannel_backend_type: vxlan - # must be 4789 if using Flannel VxLan mode in the cluster with Windows nodes canal_flannel_backend_port: "8472" ``` @@ -60,7 +59,6 @@ network: options: flannel_iface: eth1 flannel_backend_type: vxlan - # must be 4789 if using VxLan mode in the cluster with Windows nodes flannel_backend_port: "8472" ```