@promptly/k8s
v2.2.0
Published
A simple Kubernetes client library
Downloads
1
Readme
@promptly/k8s
A simple Kubernetes client for Node.js based on kubernetes-client
.
Because some functionality isn't yet supported by kubernetes-client
, this package also provides convenience methods for shelling out to kubectl
.
Installing
$ yarn add @promptly/k8s
Usage
import { Kubernetes, Kubectl } from '@promptly/k8s';
// This is a wrapper around `kubernetes-client`
const kubernetes = new Kubernetes();
// This is a wrapper around `kubectl`
const kubectl = new Kubectl();