25 lines
810 B
Markdown
25 lines
810 B
Markdown
Collection of Helm charts, primarily for use in my own homelab (though, if you want to use them, you're welcome to!)
|
|
|
|
## Usage
|
|
|
|
### Package and upload
|
|
|
|
```bash
|
|
# Package a chart ready to be uploaded
|
|
$ helm package charts/<path>
|
|
# Do the upload
|
|
$ curl --user <username>:<password> -X POST --upload-file ./<package>.tgz https://hostname.of.gitea/api/packages/<user>/helm/api/charts
|
|
# Don't forget to delete the `.tgz`!
|
|
```
|
|
|
|
### Installation
|
|
|
|
```bash
|
|
$ helm repo add --username <username> --password <password> <repo-alias> https://hostname.of.gitea/api/packages/<user>/helm
|
|
$ helm install <release-name> <repo-alias>/<name>
|
|
```
|
|
|
|
## Other links
|
|
|
|
* [General documentation on repositories](https://helm.sh/docs/topics/chart_repository/)
|
|
* [Gitea's own documentation](https://docs.gitea.com/next/usage/packages/helm) |