chore(docs): 📝 add real URLs and names in READMEs (#38)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Lars 2024-11-06 16:02:25 +01:00 committed by GitHub
parent 0defe76daf
commit 0e94b4235a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 11 additions and 11 deletions

View File

@ -32,7 +32,7 @@ hellyfin-helm/
To use the charts in this repository, first add the repository to Helm:
```bash
helm repo add jellyfin https://<your-repo-url>.git
helm repo add jellyfin https://jellyfin.github.io/jellyfin-helm
helm repo update
```

View File

@ -13,7 +13,7 @@ Jellyfin Media Server
Helm repositories contain collections of charts. You can add an existing repository using the following command:
```bash
helm repo add <repo-name> <repo-url>
helm repo add jellyfin https://jellyfin.github.io/jellyfin-helm
```
### 2. Install the Helm Chart
@ -21,7 +21,7 @@ helm repo add <repo-name> <repo-url>
To install a chart, use the following command:
```bash
helm install <release-name> <repo-name>/jellyfin
helm install my-jellyfin jellyfin/jellyfin
```
### 3. View the Installation
@ -29,7 +29,7 @@ helm install <release-name> <repo-name>/jellyfin
You can check the status of the release using:
```bash
helm status <release-name>
helm status my-jellyfin
```
## Customizing the Chart
@ -38,14 +38,14 @@ Helm charts come with default values, but you can customize them by using the --
### 1. Using --set to Override Values
```bash
helm install <release-name> <chart-name> --set key1=value1,key2=value2
helm install my-jellyfin jellyfin/jellyfin --set key1=value1,key2=value2
```
### 2. Using a values.yaml File
You can create a custom values.yaml file and pass it to the install command:
```bash
helm install <release-name> <chart-name> -f values.yaml
helm install my-jellyfin jellyfin/jellyfin -f values.yaml
```
## Values

View File

@ -14,7 +14,7 @@
Helm repositories contain collections of charts. You can add an existing repository using the following command:
```bash
helm repo add <repo-name> <repo-url>
helm repo add jellyfin https://jellyfin.github.io/jellyfin-helm
```
### 2. Install the Helm Chart
@ -22,7 +22,7 @@ helm repo add <repo-name> <repo-url>
To install a chart, use the following command:
```bash
helm install <release-name> <repo-name>/jellyfin
helm install my-jellyfin jellyfin/jellyfin
```
### 3. View the Installation
@ -30,7 +30,7 @@ helm install <release-name> <repo-name>/jellyfin
You can check the status of the release using:
```bash
helm status <release-name>
helm status my-jellyfin
```
## Customizing the Chart
@ -39,14 +39,14 @@ Helm charts come with default values, but you can customize them by using the --
### 1. Using --set to Override Values
```bash
helm install <release-name> <chart-name> --set key1=value1,key2=value2
helm install my-jellyfin jellyfin/jellyfin --set key1=value1,key2=value2
```
### 2. Using a values.yaml File
You can create a custom values.yaml file and pass it to the install command:
```bash
helm install <release-name> <chart-name> -f values.yaml
helm install my-jellyfin jellyfin/jellyfin -f values.yaml
```
{{ template "chart.maintainersSection" . }}