feat(install): 更新节点网络优化相关

这个提交包含在:
2024-06-24 18:19:24 +08:00
未验证
父节点 5afb0991e8
当前提交 12661e2a57
+6
查看文件
@@ -63,3 +63,9 @@ kubectl label nodes tca svccontroller.k3s.cattle.io/enablelb="true"
```shell
kubectl taint nodes tca node-role.kubernetes.io/master:NoSchedule
```
### 节点网络优化
可以在需要加速的节点屏蔽目标ip 比如85.113.71.11 让tailscale强制走drep服务器进行加速
```shell
iptables -A OUTPUT -p udp --dport 41641 -d 85.113.71.11 -j DROP
```