protected getFlags()

in src/types/kubectl.ts [206:218]


   protected getFlags(namespaceOverride?: string): string[] {
      const flags = []
      if (this.ignoreSSLErrors) {
         flags.push('--insecure-skip-tls-verify')
      }

      const ns = namespaceOverride || this.namespace
      if (ns) {
         flags.push('--namespace', ns)
      }

      return flags
   }