Helm is the package manager for Kubernetes. We recently added a plugin architecture to Helm that makes it easy for you to write new features in any programming language you choose.
In this post, we'll create a simple Helm plugin in three steps:
make a directory create a plugin.yaml file write a simple plugin in shell script Step 1: Create a Directory
The first step in creating a plugin is to create a new directory to hold your plugin:
$ cd $(helm home)/plugins $ mkdir hello $ cd hello ...
Published on March 21, 2017 12:51