npm.io
5.1.0 • Published 3 months ago

kubernetes-models

Licence
MIT
Version
5.1.0
Deps
3
Size
5.3 MB
Vulns
0
Weekly
0
Stars
163

kubernetes-models

Kubernetes models in TypeScript.

Installation

Install with npm.

npm install kubernetes-models

Usage

import { Pod } from "kubernetes-models/v1";

// Create a new instance
const pod = new Pod({
  metadata: {
    name: "foo"
  },
  spec: {
    containers: []
  }
});

// Validate against JSON schema
pod.validate();

License

MIT

Keywords