Socket
Socket
Sign inDemoInstall

openshift-rest-client

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openshift-rest-client

Node.js client for developing with OpenShift


Version published
Weekly downloads
32K
decreased by-3.7%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Coverage Status

Openshift Client

Greenkeeper badge

Node.js based client for the Openshift REST API, not unlike the Fabric8 Maven Plugin, but for node clients/builds.

Usage

npm install --save openshift-rest-client

The client needs to be passed a config object with the follow properties:

{ apiVersion: 'v1',
context:
 { cluster: '192-168-99-100:8443',
   namespace: 'for-node-client-testing',
   user: 'developer/192-168-99-100:8443' },
user: { token: 'zVBd1ZFeJqEAILJgimm4-gZJauaw3PW4EVqV_peEZ3U' },
cluster: 'https://192.168.99.100:8443' }

This can be obtained using the openshift-config-loader

By default, the config loader with look for a config at ~/.kube/config

Code:

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

openshiftConfigLoader(settings).then((config) => {
  openshiftRestClient(config).then((client) => {
    // Use the client object to find a list of projects, for example
    client.projects.find().then((projects) => {
      console.log(projects);
    });
  });
});

Keywords

FAQs

Package last updated on 13 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc