Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

auto-kubernetes-client

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auto-kubernetes-client

NodeJS Kubernetes Client with automatic API discoveryEdit

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-71.43%
Maintainers
1
Weekly downloads
 
Created
Source

auto-kubernetes-client Build Status Greenkeeper badge

NodeJS Kubernetes Client with automatic API discovery

Installation

npm install --save auto-kubernetes-client

Usage

  1. Create a configuration object

    const config = {
        url: 'https://k8s.example.com',
        ca: 'PEM encoded CA certificate',
        cert: 'PEM encoded client certificate',
        key: 'PEM encoded client key'
    }
    
  2. Create the client and connect to the API server

    const AutoK8sClient = require('auto-kubernetes-client');
    AutoK8sClient(config, function(err, client) {
        if (err) {
            throw new Error(`Error when connecting: ${err.message}`);
        }
    
        // Use client
    });
    
  3. Invoke methods

    The client exposes resources available to the authenticated user using a fairly regular API.

    • API groups need to be selected using the group(name[, version]) method. The "core" API is available directly on the client instance.
    • Non-namespaced resources are available directly on the API instance (core/group), for namespaced-resources one must explicitly select the namespace using the ns(name) method.
    • Resource collections are available by their name in plural, for example client.ns('default').pods represents the "pods" resource collection. Resource collections offer resource methods list, watch, and deletecollection, as well as create to create a new resource.
    • Single (non-collection) resources are available by their singular name, for example client.ns('default').pod('pod1') represents the "pod" resources for the "pod1" pod. Single resources offer resource methods get, update, patch and delete.
    • Resource methods typically have the signature method(callback, qs = {}), where qs is a hash for additional query parameters, and callback is a function(err, response, data). response contains the full response as provided by the request library, and data is the parsed response entity.
    • The watch resource method has the signature watch(callback), and callback is a function(err, change). If change is null then the watch was interrupted/ended, otherwise it will be an object with a type field ('ADDED', 'DELETED', 'MODIFIED'), and the actual object that was modified.

Examples

ExampleDescription
examples/list-podsList all pods in the cluster

License

This software is licensed under the Apache 2 license, quoted below.

Copyright 2017 Collaborne B.V. <http://github.com/Collaborne/>

Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.

Keywords

FAQs

Package last updated on 27 Mar 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