gcp-container-builder
v0.1.0
Published
Container Builder Client Library for Node.js
Downloads
14
Readme
Node.js Client for Google Container Builder
Node.js client for Google Container Builder.
This is just a temporary node client for Container Builder while the official Google client doesn't have support for it.
The semantics are the same as with other GCP clients:
var config = { keyFilename: '/path/to/keyfile.json' };
var builder = require('gcp-container-builder')(config);
builder.getBuilds((err, builds) => { /* process builds */ });
Currently only getBuilds
and createBuild
methods are implemented.