JSPM

kubernetes-fluent-client

1.3.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17501
  • Score
    100M100P100Q140448F
  • License Apache-2.0

A @kubernetes/client-node fluent API wrapper that leverages K8s Server Side Apply

Package Exports

  • kubernetes-fluent-client
  • kubernetes-fluent-client/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (kubernetes-fluent-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Kubernetes Fluent Client for Node

Npm package license Known Vulnerabilities Npm package version Npm package total downloads

import { K8s, kind } from "kubernetes-fluent-client";

async function main() {
  const pods = await K8s(kind.Pod).Get();
  console.log(pods);
}