From bf8252970a8ced15592f881a6d3de4c70d20bd9a Mon Sep 17 00:00:00 2001 From: gilgamezh Date: Sat, 17 Jan 2026 11:16:43 +0100 Subject: [PATCH] media: add nzbget with pvc and proxy routing --- custom_helm_charts/nzbget/.helmignore | 21 +++++ custom_helm_charts/nzbget/Chart.yaml | 5 ++ custom_helm_charts/nzbget/templates/NOTES.txt | 19 +++++ .../nzbget/templates/_helpers.tpl | 32 ++++++++ .../nzbget/templates/deployment.yaml | 53 ++++++++++++ .../nzbget/templates/ingress.yaml | 38 +++++++++ .../nzbget/templates/service.yaml | 19 +++++ custom_helm_charts/nzbget/values.yaml | 82 +++++++++++++++++++ helm-values/nzbget_values.yaml | 69 ++++++++++++++++ 9 files changed, 338 insertions(+) create mode 100644 custom_helm_charts/nzbget/.helmignore create mode 100644 custom_helm_charts/nzbget/Chart.yaml create mode 100644 custom_helm_charts/nzbget/templates/NOTES.txt create mode 100644 custom_helm_charts/nzbget/templates/_helpers.tpl create mode 100644 custom_helm_charts/nzbget/templates/deployment.yaml create mode 100644 custom_helm_charts/nzbget/templates/ingress.yaml create mode 100644 custom_helm_charts/nzbget/templates/service.yaml create mode 100644 custom_helm_charts/nzbget/values.yaml create mode 100644 helm-values/nzbget_values.yaml diff --git a/custom_helm_charts/nzbget/.helmignore b/custom_helm_charts/nzbget/.helmignore new file mode 100644 index 0000000..f0c1319 --- /dev/null +++ b/custom_helm_charts/nzbget/.helmignore @@ -0,0 +1,21 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj diff --git a/custom_helm_charts/nzbget/Chart.yaml b/custom_helm_charts/nzbget/Chart.yaml new file mode 100644 index 0000000..1c64ba4 --- /dev/null +++ b/custom_helm_charts/nzbget/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +appVersion: "1.0" +description: NZBGet - Usenet downloader +name: nzbget +version: 0.1.0 diff --git a/custom_helm_charts/nzbget/templates/NOTES.txt b/custom_helm_charts/nzbget/templates/NOTES.txt new file mode 100644 index 0000000..cf45c0a --- /dev/null +++ b/custom_helm_charts/nzbget/templates/NOTES.txt @@ -0,0 +1,19 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range .Values.ingress.hosts }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }}{{ $.Values.ingress.path }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "nzbget.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get svc -w {{ template "nzbget.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "nzbget.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "nzbget.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:6789 to use your application" + kubectl port-forward $POD_NAME 6789:{{ .Values.service.port }} +{{- end }} diff --git a/custom_helm_charts/nzbget/templates/_helpers.tpl b/custom_helm_charts/nzbget/templates/_helpers.tpl new file mode 100644 index 0000000..af18964 --- /dev/null +++ b/custom_helm_charts/nzbget/templates/_helpers.tpl @@ -0,0 +1,32 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "nzbget.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "nzbget.fullname" -}} +{{- if .Values.fullnameOverride -}} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- $name := default .Chart.Name .Values.nameOverride -}} +{{- if contains $name .Release.Name -}} +{{- .Release.Name | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- end -}} +{{- end -}} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "nzbget.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} diff --git a/custom_helm_charts/nzbget/templates/deployment.yaml b/custom_helm_charts/nzbget/templates/deployment.yaml new file mode 100644 index 0000000..b303d50 --- /dev/null +++ b/custom_helm_charts/nzbget/templates/deployment.yaml @@ -0,0 +1,53 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ template "nzbget.fullname" . }} + labels: + app: {{ template "nzbget.name" . }} + chart: {{ template "nzbget.chart" . }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app: {{ template "nzbget.name" . }} + release: {{ .Release.Name }} + template: + metadata: + labels: + app: {{ template "nzbget.name" . }} + release: {{ .Release.Name }} + spec: + volumes: +{{ toYaml .Values.volumes | indent 6 }} + containers: + - name: {{ .Chart.Name }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: +{{ toYaml .Values.env | indent 12 }} + ports: + - name: http + containerPort: {{ .Values.service.port }} + protocol: TCP + livenessProbe: +{{ toYaml .Values.livenessProbe | indent 12 }} + readinessProbe: +{{ toYaml .Values.readinessProbe | indent 12 }} + volumeMounts: +{{ toYaml .Values.volumeMounts | indent 12 }} + resources: +{{ toYaml .Values.resources | indent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: +{{ toYaml . | indent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: +{{ toYaml . | indent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} + {{- end }} diff --git a/custom_helm_charts/nzbget/templates/ingress.yaml b/custom_helm_charts/nzbget/templates/ingress.yaml new file mode 100644 index 0000000..425f974 --- /dev/null +++ b/custom_helm_charts/nzbget/templates/ingress.yaml @@ -0,0 +1,38 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "nzbget.fullname" . -}} +{{- $ingressPath := .Values.ingress.path -}} +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + app: {{ template "nzbget.name" . }} + chart: {{ template "nzbget.chart" . }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} +{{- with .Values.ingress.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} +{{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ . }} + http: + paths: + - path: {{ $ingressPath }} + backend: + serviceName: {{ $fullName }} + servicePort: http + {{- end }} +{{- end }} diff --git a/custom_helm_charts/nzbget/templates/service.yaml b/custom_helm_charts/nzbget/templates/service.yaml new file mode 100644 index 0000000..95c9c23 --- /dev/null +++ b/custom_helm_charts/nzbget/templates/service.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ template "nzbget.fullname" . }} + labels: + app: {{ template "nzbget.name" . }} + chart: {{ template "nzbget.chart" . }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: {{ .Values.service.port }} + protocol: TCP + name: http + selector: + app: {{ template "nzbget.name" . }} + release: {{ .Release.Name }} diff --git a/custom_helm_charts/nzbget/values.yaml b/custom_helm_charts/nzbget/values.yaml new file mode 100644 index 0000000..22d600a --- /dev/null +++ b/custom_helm_charts/nzbget/values.yaml @@ -0,0 +1,82 @@ +replicaCount: 1 + +image: + repository: lscr.io/linuxserver/nzbget + tag: latest + pullPolicy: IfNotPresent + +env: + - name: PUID + value: "1000" + - name: PGID + value: "1000" + - name: TZ + value: "Europe/Amsterdam" + - name: HTTP_PROXY + value: "http://gluetun.default.svc.cluster.local:8888" + - name: HTTPS_PROXY + value: "http://gluetun.default.svc.cluster.local:8888" + - name: NO_PROXY + value: "localhost,127.0.0.1,.svc,.cluster.local" + +service: + type: ClusterIP + port: 6789 + +ingress: + enabled: false + annotations: + kubernetes.io/ingress.class: nginx + kubernetes.io/tls-acme: "true" + path: / + hosts: + - nzbget.example.org + tls: + - secretName: nzbget-example-org + hosts: + - nzbget.example.org + +volumes: + - name: plex-data + persistentVolumeClaim: + claimName: plex-data + +volumeMounts: + - name: plex-data + mountPath: "/config" + subPath: "configs/nzbget" + - name: plex-data + mountPath: "/downloads" + subPath: "usenet" + +livenessProbe: + tcpSocket: + port: 6789 + initialDelaySeconds: 10 + periodSeconds: 20 + timeoutSeconds: 2 + failureThreshold: 3 + +readinessProbe: + tcpSocket: + port: 6789 + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 2 + failureThreshold: 3 + +resources: + requests: + memory: "500Mi" + cpu: "500m" + ephemeral-storage: "50Mi" + limits: + memory: "2Gi" + cpu: "2" + ephemeral-storage: "1Gi" + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/helm-values/nzbget_values.yaml b/helm-values/nzbget_values.yaml new file mode 100644 index 0000000..b076d70 --- /dev/null +++ b/helm-values/nzbget_values.yaml @@ -0,0 +1,69 @@ +replicaCount: 1 + +image: + repository: lscr.io/linuxserver/nzbget + tag: "latest" + pullPolicy: Always + +env: + - name: PUID + value: "1000" + - name: PGID + value: "1000" + - name: TZ + value: "Europe/Amsterdam" + - name: HTTP_PROXY + value: "http://gluetun.default.svc.cluster.local:8888" + - name: HTTPS_PROXY + value: "http://gluetun.default.svc.cluster.local:8888" + - name: NO_PROXY + value: "localhost,127.0.0.1,.svc,.cluster.local" + +service: + type: ClusterIP + port: 6789 + +volumes: + - name: plex-data + persistentVolumeClaim: + claimName: "plex-data" + +volumeMounts: + - name: plex-data + mountPath: "/config" + subPath: "configs/nzbget" + - name: plex-data + mountPath: "/downloads" + subPath: "usenet" + +livenessProbe: + tcpSocket: + port: 6789 + initialDelaySeconds: 10 + periodSeconds: 20 + timeoutSeconds: 2 + failureThreshold: 3 + +readinessProbe: + tcpSocket: + port: 6789 + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 2 + failureThreshold: 3 + +resources: + requests: + memory: "500Mi" + cpu: "500m" + ephemeral-storage: "50Mi" + limits: + memory: "2Gi" + cpu: "2" + ephemeral-storage: "1Gi" + +nodeSelector: {} + +tolerations: [] + +affinity: {}