kubeadm: use non-formatting constructor for new error

This commit is contained in:
Dmitry Rozhkov 2019-01-09 12:00:05 +02:00
parent cdbc9d8567
commit 193d0f21c4

View File

@ -52,7 +52,7 @@ func enforceRequirements(flags *applyPlanFlags, dryRun bool, newK8sVersion strin
// Check if the cluster is self-hosted
if upgrade.IsControlPlaneSelfHosted(client) {
return nil, nil, nil, errors.Errorf("cannot upgrade a self-hosted control plane")
return nil, nil, nil, errors.New("cannot upgrade a self-hosted control plane")
}
// Run healthchecks against the cluster