mirror of https://github.com/k3s-io/k3s
kubeadm: fix golint warnings for redundant ifs
When golint is run against kubeadm it reports severel warnings like redundant if ...; err != nil check, just return error instead. Fix the warnings by just returning error.pull/564/head
parent
aee1ab34ab
commit
0bf0b3ef1a
|
@ -149,9 +149,6 @@ func runControlPlaneSubPhase(component string) func(c workflow.RunData) error {
|
|||
cfg := data.Cfg()
|
||||
|
||||
fmt.Printf("[control-plane] Creating static Pod manifest for %q\n", component)
|
||||
if err := controlplane.CreateStaticPodFiles(data.ManifestDir(), cfg, component); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
return controlplane.CreateStaticPodFiles(data.ManifestDir(), cfg, component)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -69,9 +69,5 @@ func runMarkControlPlane(c workflow.RunData) error {
|
|||
}
|
||||
|
||||
nodeRegistration := data.Cfg().NodeRegistration
|
||||
if err := markcontrolplanephase.MarkControlPlane(client, nodeRegistration.Name, nodeRegistration.Taints); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
return markcontrolplanephase.MarkControlPlane(client, nodeRegistration.Name, nodeRegistration.Taints)
|
||||
}
|
||||
|
|
|
@ -239,10 +239,7 @@ func removeContainers(execer utilsexec.Interface, criSocketPath string) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if err := containerRuntime.RemoveContainers(containers); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
return containerRuntime.RemoveContainers(containers)
|
||||
}
|
||||
|
||||
// cleanDir removes everything in a directory, but not the directory itself
|
||||
|
|
|
@ -74,10 +74,7 @@ func (r Registration) Unmarshal(fileContent []byte) (runtime.Object, error) {
|
|||
|
||||
func unmarshalObject(obj runtime.Object, fileContent []byte) error {
|
||||
// Decode the file content using the componentconfig Codecs that knows about all APIs
|
||||
if err := runtime.DecodeInto(Codecs.UniversalDecoder(), fileContent, obj); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
return runtime.DecodeInto(Codecs.UniversalDecoder(), fileContent, obj)
|
||||
}
|
||||
|
||||
const (
|
||||
|
|
|
@ -59,11 +59,7 @@ func CreatePKIAssets(cfg *kubeadmapi.InitConfiguration) error {
|
|||
fmt.Printf("[certs] valid certificates and keys now exist in %q\n", cfg.CertificatesDir)
|
||||
|
||||
// Service accounts are not x509 certs, so handled separately
|
||||
if err := CreateServiceAccountKeyAndPublicKeyFiles(cfg); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
return CreateServiceAccountKeyAndPublicKeyFiles(cfg)
|
||||
}
|
||||
|
||||
// CreateServiceAccountKeyAndPublicKeyFiles create a new public/private key files for signing service account users.
|
||||
|
|
|
@ -54,10 +54,7 @@ func SetInitDynamicDefaults(cfg *kubeadmapi.InitConfiguration) error {
|
|||
if err := SetAPIEndpointDynamicDefaults(&cfg.LocalAPIEndpoint); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := SetClusterDynamicDefaults(&cfg.ClusterConfiguration, cfg.LocalAPIEndpoint.AdvertiseAddress, cfg.LocalAPIEndpoint.BindPort); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
return SetClusterDynamicDefaults(&cfg.ClusterConfiguration, cfg.LocalAPIEndpoint.AdvertiseAddress, cfg.LocalAPIEndpoint.BindPort)
|
||||
}
|
||||
|
||||
// SetBootstrapTokensDynamicDefaults checks and sets configuration values for the BootstrapTokens object
|
||||
|
|
|
@ -41,11 +41,7 @@ func SetJoinDynamicDefaults(cfg *kubeadmapi.JoinConfiguration) error {
|
|||
return err
|
||||
}
|
||||
|
||||
if err := SetJoinControlPlaneDefaults(cfg.ControlPlane); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
return SetJoinControlPlaneDefaults(cfg.ControlPlane)
|
||||
}
|
||||
|
||||
// SetJoinControlPlaneDefaults checks and sets configuration values for the JoinControlPlane object
|
||||
|
|
Loading…
Reference in New Issue