Merge pull request #70182 from SataQiu/fix-20181024

Fix incorrect return value of kubeadm pre-flight checks
pull/58/head
k8s-ci-robot 2018-10-24 16:58:22 -07:00 committed by GitHub
commit eff7492d38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ func runPreflightMaster(c workflow.RunData) error {
fmt.Println("[preflight] running pre-flight checks")
if err := preflight.RunInitMasterChecks(utilsexec.New(), data.Cfg(), data.IgnorePreflightErrors()); err != nil {
return nil
return err
}
if !data.DryRun() {