1.0.2 • Published 11 months ago

simple-kubernetes-client v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

simple-k8-client

Node.js CI

A simple and easy to use Kubernetes Client for Nodejs , the available k8 client by kubernetes is great but for simple/common use-cases it is very unintuitive as it expects you to pass a bunch of empty params which could confuse a lot of users who are not looking to learn these

simple-k8-client is a very lightweight client which makes the k8 functions much easier to use for simple/common usecases

Minimalist Kubernetes framework for Node.js.

Examples:

const { pod } = require("simple-kubernetes-client");

const doSomething = async ()=> {
    const helloWorldPod = await pod.getPod("hello-world");
    console.log(helloWorldPod)
}

Test : Coverage is still not 100% will add more unit test, yet to write integration test

npm run test

Future addition:

  1. Cursor addition to fetch data via scroll
  2. More Functions
1.0.2

11 months ago

1.0.1

12 months ago

1.0.0

12 months ago