File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
content/en/docs/tasks/administer-cluster/kubeadm Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -114,11 +114,25 @@ Once you have a Linux-based Kubernetes control-plane node you are ready to choos
114
114
curl -L https://github.com/kubernetes-sigs/sig-windows-tools/releases/latest/download/kube-proxy.yml | sed ' s/VERSION/{{< param "fullversion" >}}/g' | kubectl apply -f -
115
115
kubectl apply -f https://github.com/kubernetes-sigs/sig-windows-tools/releases/latest/download/flannel-overlay.yml
116
116
` ` `
117
-
118
117
{{< note > }}
119
118
If you' re using host-gateway use https://github.com/kubernetes-sigs/sig-windows-tools/releases/latest/download/flannel-host-gw.yml instead
120
119
{{< /note >}}
121
120
121
+ {{< note >}}
122
+ If you' re using a different interface rather than Ethernet (i.e. " Ethernet0 2" ) on the Windows nodes, you have to modify the line:
123
+
124
+ ` ` ` powershell
125
+ wins cli process run --path /k/flannel/setup.exe --args " --mode=overlay --interface=Ethernet"
126
+ ` ` `
127
+ in the flannel-host-gw.yml or flannel-overlay.yml file and specify your interface accordingly.
128
+ {{< /note > }}
129
+
130
+ ` ` ` bash
131
+ # Example
132
+ curl -L https://github.com/kubernetes-sigs/sig-windows-tools/releases/latest/download/flannel-overlay.yml | sed ' s/Ethernet/Ethernet0 2/g' | kubectl apply -f -
133
+ ` ` `
134
+
135
+
122
136
# ## Joining a Windows worker node
123
137
{{< note > }}
124
138
You must install the ` Containers` feature and install Docker. Instructions
You can’t perform that action at this time.
0 commit comments