Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions versioned_docs/version-3/faq/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,16 @@ For example:
helm list -v 6
```

### Debugging HTTP requests when pulling charts

To troubleshoot HTTP issues with `helm pull`, use the `--debug` flag. This outputs the URL being fetched and the response status, helping you diagnose connectivity problems, authentication failures, or incorrect repository URLs.

For example:

```console
$ helm pull myrepo/mychart --debug
```

### Tiller installations stopped working and access is denied

Helm releases used to be available from <https://storage.googleapis.com/kubernetes-helm/>. As explained in ["Announcing get.helm.sh"](https://helm.sh/blog/get-helm-sh/), the official location changed in June 2019. [GitHub Container Registry](https://github.com/orgs/helm/packages/container/package/tiller) makes all the old Tiller images available.
Expand Down
Loading