This is a Helm plugin that helps you manipulate your chart version. It is meant to be used in integration pipelines.
helm plugin install https://github.com/mbenabda/helm-local-chart-version
Pick a release tarball from the releases page.
Unpack the tarball in your helm plugins directory ($(helm home)/plugins
).
E.g.
curl -L $TARBALL_URL | tar -C $(helm home)/plugins -xzv
Clone the repository into your $GOPATH
and then build it.
$ mkdir -p $GOPATH/src/github.com/mbenabda/
$ cd $GOPATH/src/github.com/mbenabda/
$ git clone https://github.com/mbenabda/helm-local-chart-version.git
$ cd helm-local-chart-version
$ make install
The above will install this plugin into your $HELM_HOME/plugins
directory.