Creating a Helm Plugin in 3 Steps

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 ...
 •  0 comments  •  flag
Share on Twitter
Published on March 21, 2017 12:51
No comments have been added yet.