0.4.0 • Published 7 years ago

openshift-config-loader v0.4.0

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

Build Status Coverage Status

Openshift Config Loader

Greenkeeper badge

Node.js based client for loading an Openshift config file.

Defaults to the ~/.kube/config file

Example Usage

Install the dependecy

npm install openshift-config-loader

Code:

'use strict';

const openshiftConfigLoader = require('openshift-config-loader');

openshiftConfigLoader().then((config) => {
  console.log(config);
});

How It Works

First, the config loader will look, by default, a file named ~/.kube/config . If it can't find it, then the config loader will try loading the config as a service account.

You can turn off the service account lookup by either passing an options object with the property options.tryServiceAccount equal to false or set an environment variable named KUBERNETES_AUTH_TRYSERVICEACCOUNT equal to false

For Example:

const options = {
  tryServiceAccount: false
};

openshiftConfigLoader(options).then((config) => {
  console.log(config);
});
0.4.0

7 years ago

0.4.0-0

7 years ago

0.3.0

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago