@kubernetes-models/cloudnative-pg
v0.1.2
Published
cloudnative-pg models
Downloads
151
Maintainers
Readme
@kubernetes-models/cloudnative-pg
CloudNative PG models.
Installation
Install with npm.
npm install @kubernetes-models/cloudnative-pg
Usage
import { Cluster } from "@kubernetes-models/cloudnative-pg/postgresql.cnpg.io/v1/Cluster";
// Create a new GitRepository
const cluster = new Cluster({
metadata: {
name: "cluster-example"
},
spec: {
instances: 3,
storage: {
size: "1Gi"
}
}
});
// Validate against JSON schema
cluster.validate();
License
MIT