This is a Helm plugin giving your a preview of what a helm upgrade
would change.
It basically generates a diff between the latest deployed version of a release
and a helm upgrade --debug --dry-run
$ helm diff [flags] RELEASE CHART
--set string set values on the command line. See 'helm install -h'
-f, --values valueFiles specify one or more YAML files of values (default [])
helm plugin install https://github.com/databus23/helm-diff
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/databus23/
$ cd $GOPATH/src/github.com/databus23/
$ git clone https://github.com/databus23/helm-diff.git
$ cd helm-diff
$ make install
The above will install this plugin into your $HELM_HOME/plugins
directory.