Skip to content

Commit

Permalink
add helm dependency update step
Browse files Browse the repository at this point in the history
  • Loading branch information
imgios authored Apr 26, 2024
1 parent 259c8c7 commit 744438a
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,21 @@ These instructions will get you a copy of the project up and running on your loc
$ git clone https://github.com/fonzdm/servarr.git && cd servarr
```

2. Prepare your [`values.yaml`](#values)
3. Try it in your cluster to check that everything is fine (replace the `servarr/` with the chart folder if your workdir is different):
2. Retrieve the dependencies

```shell
$ helm dependency update
```

> [!NOTE]
> If the previous command fails or goes in timeout (or takes too much), try adding the truecharts Helm repository:
> ```shell
> $ helm repo add truecharts https://charts.truecharts.org
> ```
> and then execute again the `helm dependency update` command.
3. Prepare your [`values.yaml`](#values)
4. Try it in your cluster to check that everything is fine (replace the `servarr/` with the chart folder if your workdir is different):
```shell
$ helm install servarr-dev servarr/ \
Expand Down

0 comments on commit 744438a

Please sign in to comment.