Skip to content

Commit

Permalink
Prep for v0.16.1 release (#703)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Dolitsky <[email protected]>
  • Loading branch information
jdolitsky authored Jun 30, 2023
1 parent d459f51 commit b70fa48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION ?= 0.16.0
VERSION ?= 0.16.1
REVISION := $(shell git rev-parse --short HEAD;)

BINDIR := $(CURDIR)/bin
Expand Down
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,8 @@ helm install chartmuseum/mychart --generate-name
## How to Run
### CLI
#### Installation
Install binary using [GoFish](https://gofi.sh/):
```
gofish install chartmuseum
==> Installing chartmuseum...
🐠 chartmuseum 0.16.0: installed in 95.431145ms
```

or you can use the installer script:
You can use the installer script:
```
curl https://raw.githubusercontent.com/helm/chartmuseum/main/scripts/get-chartmuseum | bash
```
Expand Down Expand Up @@ -464,7 +458,7 @@ docker run --rm -it \
-e STORAGE=local \
-e STORAGE_LOCAL_ROOTDIR=/charts \
-v $(pwd)/charts:/charts \
ghcr.io/helm/chartmuseum:v0.16.0
ghcr.io/helm/chartmuseum:v0.16.1
```

Example usage (S3):
Expand All @@ -477,7 +471,7 @@ docker run --rm -it \
-e STORAGE_AMAZON_PREFIX="" \
-e STORAGE_AMAZON_REGION="us-east-1" \
-v ~/.aws:/home/chartmuseum/.aws:ro \
ghcr.io/helm/chartmuseum:v0.16.0
ghcr.io/helm/chartmuseum:v0.16.1
```

### Helm Chart
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-test-environment.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -ex

HELM_VERSION="3.12.0"
HELM_VERSION="3.12.1"

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/../
Expand Down

0 comments on commit b70fa48

Please sign in to comment.