We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
本地环境部署lb时,发现ipvs缺少关于arp的可配置项。
是否可以在cluster的config中增加配置项
cluster
config
目前我的解决办法是,手动修改/var/lib/kube-proxy/kube-proxy-config.yaml 在最后增加:
/var/lib/kube-proxy/kube-proxy-config.yaml
ipvs: strictARP: true
重启服务
No response
# On Linux: $ cat /etc/os-release # paste output here $ uname -a # paste output here
The text was updated successfully, but these errors were encountered:
你可以在 roles/kube-node/templates/kube-proxy-config.yaml.j2 这个文件中加入所需的配置,然后重新安装集群 比如添加如下:
metricsBindAddress: 0.0.0.0:10249 mode: "{{ PROXY_MODE }}" {% if PROXY_MODE == "ipvs" %} ipvs: excludeCIDRs: null minSyncPeriod: 0s scheduler: "" strictARP: true {% endif %}
Sorry, something went wrong.
add ipvs配置打开strictARP #1298
70dd0ef
This issue is stale because it has been open for 30 days with no activity.
This issue was closed because it has been inactive for 14 days since being marked as stale.
No branches or pull requests
What happened? 发生了什么问题?
本地环境部署lb时,发现ipvs缺少关于arp的可配置项。
What did you expect to happen? 期望的结果是什么?
是否可以在
cluster
的config
中增加配置项How can we reproduce it (as minimally and precisely as possible)? 尽可能最小化、精确地描述如何复现问题
目前我的解决办法是,手动修改
/var/lib/kube-proxy/kube-proxy-config.yaml
在最后增加:
重启服务
Anything else we need to know? 其他需要说明的情况
No response
Kubernetes version k8s 版本
Kubeasz version
OS version 操作系统版本
Related plugins (CNI, CSI, ...) and versions (if applicable) 其他网络插件等需要说明的情况
The text was updated successfully, but these errors were encountered: