npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@npm-wharf/hikaru

v2.0.0

Published

A continuous deployment service and integration helper for kubernetes

Downloads

30

Readme

hikaru

A deployment tool for kubernetes. 100 internets if you get the reference. 1000 internets if you get why.

Build Status Coverage Status

What It Does - Deployments and Continuous Delivery

hikaru was built specifically to make it easy to deploy and maintain kubernetes clusters.

  • Initial deployment
  • Re-deployment/Updates

Features

  • Deploy mcgonagall specs from local directory
  • Supports tokenized specifications

Credential Limitations

hikaru uses kubectl under the hood and requires that you have a context configured to target each cluster you wish to deploy to.

Complimentary Tooling

hikaru requires mcgonagall style cluster specifications.

hikaru also requires that kubectl is installed and available on the PATH.

Modes

hikaru provides 2 possible models for interaction:

  • a CLI for interacting with Kubernetes clusters directly
  • custom use-cases via module

CLI

Full argument names are shown in the command examples. Shorthand arguments are available, see the interactive CLI help to get a list.

Installation

npm i @npm-wharf/hikaru -g

Tokens

If tokens are present in a specification and not provided via a tokenFile, hikaru will error and exit, informing you what tokens must be specified. It will refuse to run until all tokens have been defined.

Deploying Clusters (deploy)

Hikaru deploys specs through kubectl apply and so changes will be intelligently merged by the cluster.

Available options

  • --context (-c): the name of the kubectl context to deploy to. required
  • --tokenFile (-f): path to a file to read for tokens consumed in the spec.
  • --scale (-s): scale factor label to apply, if the given label is not used in your spec this will be ignored.
  • --verbose: output additional debug information.

Example usage:

hikaru deploy {spec} \
  --tokenFile {path to json, yaml or toml token file} \
  --context {name of kubectl context} \
  --scale {scaleLabel} \
  --verbose

Running Jobs

The run command will delete and apply the job resource again, forcing a new instance to run.

Available options

  • --job (-j): the name of the job resource to run in the format name.namespace required
  • --context (-c): the name of the kubectl context to deploy to. required
  • --tokenFile (-f): path to a file to read for tokens consumed in the spec.
  • --scale (-s): scale factor label to apply, if the given label is not used in your spec this will be ignored.
  • --verbose: output additional debug information.

Example usage:

hikaru run {spec} \
  --job {name.namespace, e.g. route53bot.infra} \
  --tokenFile {path to json, yaml or toml token file} \
  --context {name of kubectl context} \
  --scale {scaleLabel} \
  --verbose

Library

Deploying Cluster

const hikaru = require('hikaru')

hikaru.deploy({
  spec: '/path/to/spec',
  version: '1.13', // kubernetes api version
  data: {
    // tokens to apply to the spec are defined here
  },
  scale: 'medium' // scaleFactor
}) // returns a Promise

Running a Job

const hikaru = require('hikaru')

hikaru.run({
  spec: '/path/to/spec',
  job: 'name.namespace', // the job to run
  version: '1.13', // kubernetes api version
  data: {
    // tokens to apply to the spec are defined here
  },
  scale: 'medium' // scaleFactor
}) // returns a Promise