0.1.1 • Published 7 years ago

@kubernetes/typescript-node v0.1.1

Weekly downloads
26
License
Apache-2.0
Repository
github
Last release
7 years ago

typescript client for Kubernetes

Build Status

Alpha Typescript client for kubernetes

Needs lots of work...

Installing

Install nodejs

# Typescript modules
sudo npm install -g typescript ts-node

# Required libraries for the client
sudo npm install -g request bluebird js-yaml base-64

Example Code

import config = require('./config');

let k8sApi = config.Config.defaultClient();

k8sApi.listNamespacedPod('default')
    .then((res) => {
        console.log(res.body);
    });

Running via container

$ docker run -v $HOME:/root -it brendanburns/ts-k8s

Running locally

With ts-node

ts-node example.ts

With tsc

tsc example.ts
node example.js