mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
.. | ||
templates | ||
.helmignore | ||
Chart.yaml | ||
OWNERS | ||
README.md | ||
values.yaml |
nzbhydra2
This is a helm chart for nzbhydra2 leveraging the Linuxserver.io image
TL;DR;
$ helm repo add billimek https://billimek.com/billimek-charts/
$ helm install billimek/nzbhydra2
Installing the Chart
To install the chart with the release name my-release
:
helm install --name my-release billimek/nzbhydra2
Uninstalling the Chart
To uninstall/delete the my-release
deployment:
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/hydra2 |
image.tag |
Image tag. Possible values listed here. | v0.12.1132-ls37 |
image.pullPolicy |
Image pull policy | IfNotPresent |
strategyType |
Specifies the strategy used to replace old Pods by new ones | Recreate |
timezone |
Timezone the nzbhydra2 instance should run as, e.g. 'America/New_York' | UTC |
puid |
process userID the nzbhydra2 instance should run as | 1001 |
pgid |
process groupID the nzbhydra2 instance should run as | 1001 |
probes.liveness.failureThreshold |
Specify liveness failureThreshold parameter for the deployment |
5 |
probes.liveness.periodSeconds |
Specify liveness periodSeconds parameter for the deployment |
10 |
probes.readiness.failureThreshold |
Specify readiness failureThreshold parameter for the deployment |
5 |
probes.readiness.periodSeconds |
Specify readiness periodSeconds parameter for the deployment |
10 |
probes.startup.initialDelaySeconds |
Specify startup initialDelaySeconds parameter for the deployment |
5 |
probes.startup.failureThreshold |
Specify startup failureThreshold parameter for the deployment |
30 |
probes.startup.periodSeconds |
Specify startup periodSeconds parameter for the deployment |
10 |
Service.type |
Kubernetes service type for the nzbhydra2 GUI | ClusterIP |
Service.port |
Kubernetes port where the nzbhydra2 GUI is exposed | 5076 |
Service.annotations |
Service annotations for the nzbhydra2 GUI | {} |
Service.labels |
Custom labels | {} |
Service.loadBalancerIP |
Loadbalance IP for the nzbhydra2 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 |
resources |
CPU/Memory resource requests/limits | {} |
nodeSelector |
Node labels for pod assignment | {} |
tolerations |
Toleration labels for pod assignment | [] |
affinity |
Affinity settings for pod assignment | {} |
podAnnotations |
Key-value pairs to add as pod annotations | {} |
Specify each parameter using the --set key=value[,key=value]
argument to helm install
. For example,
helm install --name my-release \
--set timezone="America/New York" \
billimek/nzbhydra2
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
helm install --name my-release -f values.yaml billimek/nzbhydra2
Read through the values.yaml file. It has several commented out suggested values.