mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
90 lines
4.7 KiB
Markdown
90 lines
4.7 KiB
Markdown
# sonarr televsion show download client
|
|
|
|
This is a helm chart for [sonarr](https://github.com/sonarr/sonarr/) leveraging the [Linuxserver.io image](https://hub.docker.com/r/linuxserver/sonarr/)
|
|
|
|
## TL;DR;
|
|
|
|
```shell
|
|
$ helm repo add billimek https://billimek.github.io/helm-repo
|
|
$ helm install billimek/sonarr
|
|
```
|
|
|
|
## Installing the Chart
|
|
|
|
To install the chart with the release name `my-release`:
|
|
|
|
```console
|
|
helm install --name my-release billimek/sonarr
|
|
```
|
|
|
|
## Uninstalling the Chart
|
|
|
|
To uninstall/delete the `my-release` deployment:
|
|
|
|
```console
|
|
helm delete my-release --purge
|
|
```
|
|
|
|
The command removes all the Kubernetes components associated with the chart and deletes the release.
|
|
|
|
## Configuration
|
|
|
|
The following tables lists the configurable parameters of the Sentry chart and their default values.
|
|
|
|
| Parameter | Description | Default |
|
|
|----------------------------|-------------------------------------|---------------------------------------------------------|
|
|
| `image.repository` | Image repository | `linuxserver/sonarr` |
|
|
| `image.tag` | Image tag. Possible values listed [here](https://hub.docker.com/r/linuxserver/sonarr/tags/).| `amd64-3.0.1.418-ls45`|
|
|
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
|
|
| `strategyType` | Specifies the strategy used to replace old Pods by new ones | `Recreate` |
|
|
| `timezone` | Timezone the sonarr instance should run as, e.g. 'America/New_York' | `UTC` |
|
|
| `puid` | process userID the sonarr instance should run as | `1001` |
|
|
| `pgid` | process groupID the sonarr instance should run as | `1001` |
|
|
| `Service.type` | Kubernetes service type for the sonarr GUI | `ClusterIP` |
|
|
| `Service.port` | Kubernetes port where the sonarr GUI is exposed| `8989` |
|
|
| `Service.annotations` | Service annotations for the sonarr GUI | `{}` |
|
|
| `Service.labels` | Custom labels | `{}` |
|
|
| `Service.loadBalancerIP` | Loadbalance IP for the sonarr GUI | `{}` |
|
|
| `Service.loadBalancerSourceRanges` | List of IP CIDRs allowed access to load balancer (if supported) | None
|
|
| `ingress.enabled` | Enables Ingress | `false` |
|
|
| `ingress.annotations` | Ingress annotations | `{}` |
|
|
| `ingress.labels` | Custom labels | `{}`
|
|
| `ingress.path` | Ingress path | `/` |
|
|
| `ingress.hosts` | Ingress accepted hostnames | `chart-example.local` |
|
|
| `ingress.tls` | Ingress TLS configuration | `[]` |
|
|
| `persistence.config.enabled` | Use persistent volume to store configuration data | `true` |
|
|
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
|
| `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` |
|
|
| `persistence.config.storageClass` | Type of persistent volume claim | `-` |
|
|
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
|
| `persistence.downloads.enabled` | Use persistent volume for downloads | `true` |
|
|
| `persistence.downloads.size` | Size of persistent volume claim | `10Gi` |
|
|
| `persistence.downloads.existingClaim`| Use an existing PVC to persist data | `nil` |
|
|
| `persistence.downloads.storageClass` | Type of persistent volume claim | `-` |
|
|
| `persistence.downloads.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
|
| `persistence.tv.enabled` | Use persistent volume for tv show persistence | `true` |
|
|
| `persistence.tv.size` | Size of persistent volume claim | `10Gi` |
|
|
| `persistence.tv.existingClaim`| Use an existing PVC to persist data | `nil` |
|
|
| `persistence.tv.storageClass` | Type of persistent volume claim | `-` |
|
|
| `persistence.tv.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
|
| `persistence.extraExistingClaimMounts` | Optionally add multiple existing claims | `[]` |
|
|
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
|
| `nodeSelector` | Node labels for pod assignment | `{}` |
|
|
| `tolerations` | Toleration labels for pod assignment | `[]` |
|
|
| `affinity` | Affinity settings for pod assignment | `{}` |
|
|
|
|
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
|
|
|
```console
|
|
helm install --name my-release \
|
|
--set timezone="America/New York" \
|
|
billimek/sonarr
|
|
```
|
|
|
|
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
|
|
|
```console
|
|
helm install --name my-release -f values.yaml stable/sonarr
|
|
```
|
|
|
|
Read through the [values.yaml](values.yaml) file. It has several commented out suggested values. |