Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bacongobbler/helm-whatup
A Helm plugin to help users determine if there's an update available for their installed charts.
https://github.com/bacongobbler/helm-whatup
helm-plugin
Last synced: 3 months ago
JSON representation
A Helm plugin to help users determine if there's an update available for their installed charts.
- Host: GitHub
- URL: https://github.com/bacongobbler/helm-whatup
- Owner: bacongobbler
- License: other
- Archived: true
- Created: 2017-05-18T23:00:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-24T04:10:09.000Z (about 5 years ago)
- Last Synced: 2024-08-02T01:26:28.024Z (6 months ago)
- Topics: helm-plugin
- Language: Go
- Size: 40 KB
- Stars: 85
- Watchers: 6
- Forks: 13
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Helm Whatup
This is a Helm plugin to help users determine if there's an update available for their installed charts. It works by reading your locally cached index files from the chart repositories (via `helm repo update`) and checking the version against the latest deployed version of your charts in the Kubernetes cluster.
## Usage
```
$ helm repo update
$ helm whatup
```## Install
```
$ helm plugin install https://github.com/bacongobbler/helm-whatup
```The above will fetch the latest binary release of `helm whatup` and install it.
### Developer (From Source) Install
If you would like to handle the build yourself, instead of fetching a binary,
this is how recommend doing it.First, set up your environment:
- You need to have [Go](http://golang.org) installed. Make sure to set `$GOPATH`
- If you don't have [Glide](http://glide.sh) installed, this will install it into
`$GOPATH/bin` for you.Clone this repo into your `$GOPATH` using git.
```
cd $GOPATH/src/github.com/bacongobbler
git clone https://github.com/bacongobbler/helm-whatup
```Then run the following to get running.
```
$ cd helm-whatup
$ make bootstrap build
$ SKIP_BIN_INSTALL=1 helm plugin install $GOPATH/src/github.com/bacongobbler/helm-whatup
```That last command will skip fetching the binary install and use the one you
built.