Skip to content

Commit

Permalink
streamline helm install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
paciorek committed Mar 4, 2021
1 parent 697601d commit f50e02c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,17 @@ For the moment the chart is only available from Github and not from a Helm repo.
Clone this repository and create a tarball of the chart.

```bash
git clone https://github.com/paciorek/future-helm-chart
cd future-helm-chart
tar -cvzf future-helm.tgz
helm install ./future-helm.tgz
VERSION=0.1
helm install --wait my-release https://github.com/paciorek/future-helm-chart/archive/${VERSION}.tar.gz
```

Alternatively, to install the chart with a user specified release name, here `my-release`:
Alternatively, you can clone the repository containing the chart and then
install the chart. This will allow you to modify the chart.

```bash
helm install --name my-release ./future-helm.tgz
git clone https://github.com/paciorek/future-helm-chart
tar czf future-helm.tgz -C future-helm-chart .
helm install --wait my-release ./future-helm.tgz
```

## Modifying the chart
Expand Down

0 comments on commit f50e02c

Please sign in to comment.