Merge pull request #83677 from HotelsDotCom/kube-proxy-README

Bugfix kube-proxy README file to list ipvs modules, closes #83676
This commit is contained in:
Kubernetes Prow Robot 2019-10-21 21:11:51 -07:00 committed by GitHub
commit bbe71214a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -302,7 +302,7 @@ modprobe -- ip_vs_sh
modprobe -- nf_conntrack_ipv4
# to check loaded modules, use
lsmod | grep -e ipvs -e nf_conntrack_ipv4
lsmod | grep -e ip_vs -e nf_conntrack_ipv4
# or
cut -f1 -d " " /proc/modules | grep -e ip_vs -e nf_conntrack_ipv4
```