Bump Helm Chart version on local filesystem (inspired by https://github.com/shaneramey/helm-local-bump)
Last updated Feb 26, 2024
23
Stars
12
Forks
1
Issues
0
Stars/day
Attention Score
6
Language breakdown
No language data available.
▸ Files
click to expand
README
Helm Local Chart Version Plugin
This is a Helm plugin that helps you manipulate your chart version. It is meant to be used in integration pipelines.
Usage
Install
Using Helm plugin manager (> 2.3.x)
helm plugin install https://github.com/mbenabda/helm-local-chart-version
Pre Helm 2.3.0 Installation
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
Build
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.
Prerequisites
- You need to have Go installed. Make sure to set
$GOPATH - If you don't have Glide installed, this will install it into
$GOPATH/bin for you.🔗 More in this category