Merge pull request #77823 from stgleb/typo-fix

Fix typo in IPVS acronym
This commit is contained in:
Kubernetes Prow Robot 2019-05-13 18:25:46 -07:00 committed by GitHub
commit 12832d9055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1008,7 +1008,7 @@ func RunJoinNodeChecks(execer utilsexec.Interface, cfg *kubeadmapi.JoinConfigura
func RunOptionalJoinNodeChecks(execer utilsexec.Interface, cfg *kubeadmapi.ClusterConfiguration, ignorePreflightErrors sets.String) error {
checks := []Checker{}
// Check if IVPS kube-proxy mode is supported
// Check if IPVS kube-proxy mode is supported
if cfg.ComponentConfigs.KubeProxy != nil && cfg.ComponentConfigs.KubeProxy.Mode == ipvsutil.IPVSProxyMode {
checks = append(checks, IPVSProxierCheck{exec: execer})
}