Skip to content

Latest commit

 

History

History
40 lines (23 loc) · 1.1 KB

README.md

File metadata and controls

40 lines (23 loc) · 1.1 KB

This repository provides both helmns and helmls tools.

helmns helm cli wrapper forcing --tiller-namespace to match kubectl context

helmls a small script to list Helm releases across all --tiller-namespaces

helmns

helmns is a Helm cli wrapper forcing --tiller-namespace to match kubectl context.

This is meant to simplify management for Kubernetes clusters with RBAC enabled and where tiller is heavily locked down per namespace.

helmls

helmls is a small script to list Helm releases across all --tiller-namespaces.


Installation

Since helmns and helmls are written in Bash, they can run in shells that support POSIX standards.

  • Download the helmns and helmls scripts

    curl -L https://github.com/so0k/helmns/archive/v0.0.1.tar.gz | tar -xz
  • Either save all somewhere on your PATH (like /usr/local/bin):

    sudo mv helmns-0.0.1/helm* /usr/local/bin/
    rm -rf helmns-0.0.1
  • Or move somewhere else and create symlinks yourself


Heavily based on ahmetb/kubens