Giter Club home page Giter Club logo

auto-kubernetes-client's Introduction

auto-kubernetes-client Build Status Greenkeeper badge

NodeJS Kubernetes Client with automatic API discovery.

See this blog post for further information.

Note: No more updates expected. We are no longer using this project, if you're interested in taking it over please contact us.

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, create, update, patch and delete.
    • Resource methods typically have the signature method([qs]), where qs is a hash for additional query parameters, and return a promise for the parsed response entity.
    • The watch resource method has the signature watch([resourceVersion[, qs]]), and returns an object stream for the observed changes. Each object has a type field ('ADDED', 'DELETED', 'MODIFIED', 'ERROR'), and the actual object that was modified.
    • By default the client interprets 'Status' responses from the server with a 'Failure' status as error responses, and translates them into actual promise rejections. This can be disabled by using '.options({ rawResponse: true}).resourceMethod(...)' on the resource collection or resource.

Examples

Example Description
examples/list-pods List all pods in the cluster
examples/watch-pods Watch all pods in a specific namespace

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.

auto-kubernetes-client's People

Contributors

ankon avatar greenkeeper[bot] avatar ronnyroeller avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

auto-kubernetes-client's Issues

'watch' doesn't handle non-Status errors properly

npm info it worked if it ends with ok
npm info using [email protected]
npm info using [email protected]
npm info lifecycle [email protected]~prestart: [email protected]
npm info lifecycle [email protected]~start: [email protected]

> [email protected] start /app
> node src/index.js "--namespace=development"

[2017-05-19 14:58:45.004] [INFO] [default] - Watching queues at 0...
undefined:1
Forbidden: "/apis/aws.k8s.collaborne.com/v1/namespaces/development/queues?watch=true&resourceVersion=0"
^

SyntaxError: Unexpected token F in JSON at position 0
    at Object.parse (native)
    at DestroyableTransform._flush (/app/node_modules/auto-kubernetes-client/src/index.js:144:24)
    at DestroyableTransform.<anonymous> (/app/node_modules/readable-stream/lib/_stream_transform.js:115:49)
    at DestroyableTransform.g (events.js:291:16)
    at emitNone (events.js:86:13)
    at DestroyableTransform.emit (events.js:185:7)
    at prefinish (/app/node_modules/readable-stream/lib/_stream_writable.js:494:12)
    at finishMaybe (/app/node_modules/readable-stream/lib/_stream_writable.js:506:7)
    at endWritable (/app/node_modules/readable-stream/lib/_stream_writable.js:514:3)
    at DestroyableTransform.Writable.end (/app/node_modules/readable-stream/lib/_stream_writable.js:484:41)

This is similar to d037e91, where it was fixed for non-watch resources.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.