2018-11-05 02:18:39 +00:00
# NZBGet Usenet client
2018-11-05 01:42:41 +00:00
2018-11-05 02:18:39 +00:00
This is a helm chart for [NZBGet ](https://nzbget.net/ ) leveraging the [Linuxserver.io image ](https://hub.docker.com/r/linuxserver/nzbget/ )
2018-11-05 01:42:41 +00:00
## TL;DR;
```shell
2019-05-20 04:12:31 +00:00
$ helm repo add billimek https://billimek.com/billimek-charts/
2018-11-05 02:18:39 +00:00
$ helm install billimek/nzbget
2018-11-05 01:42:41 +00:00
```
## Installing the Chart
To install the chart with the release name `my-release` :
```console
2018-11-05 02:18:39 +00:00
helm install --name my-release billimek/nzbget
2018-11-05 01:42:41 +00:00
```
2018-11-05 02:18:39 +00:00
The default login details (change ASAP) are:
* login:nzbget
* password:tegbzn6789
2018-11-05 01:42:41 +00:00
## 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/nzbget` |
2019-05-28 01:59:46 +00:00
| `image.tag` | Image tag. Possible values listed [here ](https://hub.docker.com/r/linuxserver/nzbget/tags/ ).| `v21.0-ls14` |
2018-11-05 01:42:41 +00:00
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
2019-03-31 05:16:29 +00:00
| `strategyType` | Specifies the strategy used to replace old Pods by new ones | `Recreate` |
2018-11-05 02:18:39 +00:00
| `timezone` | Timezone the nzbget instance should run as, e.g. 'America/New_York' | `UTC` |
| `puid` | process userID the nzbget instance should run as | `1001` |
| `pgid` | process groupID the nzbget instance should run as | `1001` |
2019-12-14 15:15:02 +00:00
| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` |
| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` |
| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` |
| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` |
| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` |
| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` |
2018-11-05 02:18:39 +00:00
| `Service.type` | Kubernetes service type for the nzbget GUI | `ClusterIP` |
| `Service.port` | Kubernetes port where the nzbget GUI is exposed| `6789` |
| `Service.annotations` | Service annotations for the nzbget GUI | `{}` |
| `Service.labels` | Custom labels | `{}` |
| `Service.loadBalancerIP` | Loadbalance IP for the nzbget GUI | `{}` |
| `Service.loadBalancerSourceRanges` | List of IP CIDRs allowed access to load balancer (if supported) | None
2018-11-05 01:42:41 +00:00
| `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 to store configuration data | `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` |
| `resources` | CPU/Memory resource requests/limits | `{}` |
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `tolerations` | Toleration labels for pod assignment | `[]` |
| `affinity` | Affinity settings for pod assignment | `{}` |
2019-10-07 17:18:18 +00:00
| `podAnnotations` | Key-value pairs to add as pod annotations | `{}` |
2018-11-05 01:42:41 +00:00
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" \
2018-11-05 02:18:39 +00:00
billimek/nzbget
2018-11-05 01:42:41 +00:00
```
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
```console
2018-11-05 02:18:39 +00:00
helm install --name my-release -f values.yaml stable/nzbget
2018-11-05 01:42:41 +00:00
```
2019-05-27 02:38:58 +00:00
Read through the [values.yaml ](https://github.com/billimek/billimek-charts/blob/master/nzbget/values.yaml ) file. It has several commented out suggested values.