Showing 5 of 13 total issues
Consider simplifying this complex logical expression. Open
Open
if user1.ClientCertificate != user2.ClientCertificate || string(user1.ClientCertificateData) != string(user2.ClientCertificateData) || user1.ClientKey != user2.ClientKey || string(user1.ClientKeyData) != string(user2.ClientKeyData) || user1.Token != user2.Token ||
Method KConf.Merge
has a Cognitive Complexity of 26 (exceeds 20 allowed). Consider refactoring. Open
Open
func (k *KConf) Merge(config *clientcmdapi.Config, name string) { renamedClusters := make(map[string]string) renamedUsers := make(map[string]string) for clsName, cls := range config.Clusters {
- Read upRead up
Function getNamespacesFromConfig
has 5 return statements (exceeds 4 allowed). Open
Open
func getNamespacesFromConfig(partial string) (out []string, err error) { config, _ := kc.GetConfig() // fail if we have no current context if config.CurrentContext == "" {
Function VerifyCmd
has 5 return statements (exceeds 4 allowed). Open
Open
func VerifyCmd() *cobra.Command { command := &cobra.Command{ Use: "verify", Short: "Check for errors in the provided kubeconfig file", Long: `Check the provided kubeconfig file for errors (contexts, clusters, users) and return any issues found`,
2: cannot find package "github.com/particledecay/kconf/pkg/kubeconfig" in any of: Open
Open
kc "github.com/particledecay/kconf/pkg/kubeconfig"
- Exclude checks