ThinkDeepTech/k8s

View on GitHub

Showing 8 of 10 total issues

File k8s-api.js has 518 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import k8s from '@kubernetes/client-node';
import {k8sManifest} from '@thinkdeep/k8s-manifest';
import {ErrorNotFound} from './error/error-not-found.js';
import {normalizeKind} from './normalize-kind.js';

Severity: Major
Found in src/k8s-api.js - About 1 day to fix

    K8sApi has 37 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class K8sApi {
      /**
       * Constructor for theeee K8sApi object.
       */
      constructor() {
    Severity: Minor
    Found in src/k8s-api.js - About 4 hrs to fix

      Function _patchClusterObjectStrategy has 42 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        _patchClusterObjectStrategy(api, kind, manifest) {
          const pretty = undefined;
      
          const dryRun = undefined;
      
      
      Severity: Minor
      Found in src/k8s-api.js - About 1 hr to fix

        Function _forEachApi has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

          async _forEachApi(kubeConfig, resourceFunctionName, callback, apis) {
            if (!(kubeConfig instanceof k8s.KubeConfig)) {
              throw new Error(`Supplied k8s kube configuration was invalid.`);
            }
        
        
        Severity: Minor
        Found in src/k8s-api.js - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function listAll has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          async listAll(kind, namespace) {
            if (!this._registeredKind(kind)) {
              throw new ErrorNotFound(
                `Kind ${kind} was not found in the API. Are you sure it's correctly spelled?`
              );
        Severity: Minor
        Found in src/k8s-api.js - About 1 hr to fix

          Function _forEachApi has 30 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            async _forEachApi(kubeConfig, resourceFunctionName, callback, apis) {
              if (!(kubeConfig instanceof k8s.KubeConfig)) {
                throw new Error(`Supplied k8s kube configuration was invalid.`);
              }
          
          
          Severity: Minor
          Found in src/k8s-api.js - About 1 hr to fix

            Function createAll has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              async createAll(manifests) {
                const targets = [];
                for (const manifest of manifests) {
                  try {
                    const strategy = this._creationStrategy(manifest);
            Severity: Minor
            Found in src/k8s-api.js - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function _listClusterObjectsStrategy has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              _listClusterObjectsStrategy(api, kind, namespace) {
                const _kind = normalizeKind(kind);
            
                if (!this._registeredKind(_kind)) {
                  throw new ErrorNotFound(
            Severity: Minor
            Found in src/k8s-api.js - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Severity
            Category
            Status
            Source
            Language