Add unpackerr, jellyserr, and audiobookshelf

This commit is contained in:
SeanOMik 2023-04-09 23:05:12 -04:00
parent 8b96a73ec4
commit 7c818bb6fc
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
9 changed files with 262 additions and 2 deletions

View File

@ -9,4 +9,5 @@ resources:
- ./prowlarr - ./prowlarr
- ./bazarr - ./bazarr
- ./readarr - ./readarr
- ./mylar3 - ./mylar3
- ./unpackerr

View File

@ -0,0 +1,56 @@
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: unpackerr
namespace: download
spec:
interval: 5m
chart:
spec:
chart: app-template
version: 1.3.x
sourceRef:
kind: HelmRepository
name: bjws-charts
namespace: flux-system
values:
image:
repository: golift/unpackerr
tag: latest
service:
main:
enabled: false
probes:
liveness:
enabled: false
startup:
enabled: false
ingress:
main:
enabled: false
persistence:
config:
enabled: true
type: configMap
name: unpackerr-configmap
items:
- key: unpackerr-conf
path: "/config/unpackerr.conf"
storage:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Media
mountPath: /storage
resources:
requests:
cpu: 2m
memory: 6Mi
limits:
memory: 20Mi

View File

@ -0,0 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ./unpackerr-config.sops.yaml
- ./helm-release.yaml

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,69 @@
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: audiobookshelf
namespace: media
spec:
interval: 5m
chart:
spec:
chart: app-template
version: 1.3.x
sourceRef:
kind: HelmRepository
name: bjws-charts
namespace: flux-system
values:
image:
repository: ghcr.io/advplyr/audiobookshelf
tag: latest
service:
main:
ports:
http:
port: 80
probes:
liveness:
enabled: false
ingress:
main:
enabled: true
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-production"
traefik.ingress.kubernetes.io/router.entrypoints: websecure
hosts:
- host: "k3sabs.***REMOVED***"
paths:
- path: /
pathType: Prefix
persistence:
config:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/audiobookshelf
mountPath: /config
storage:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Media/Media
mountPath: /storage
metadata:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: 8Gi
mountPath: /metadata
resources:
requests:
cpu: 1m
memory: 40Mi
limits:
memory: 100Mi

View File

@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ./helm-release.yaml

View File

@ -0,0 +1,59 @@
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: jellyseerr
namespace: media
spec:
interval: 5m
chart:
spec:
chart: app-template
version: 1.3.x
sourceRef:
kind: HelmRepository
name: bjws-charts
namespace: flux-system
values:
image:
repository: fallenbagel/jellyseerr:develop
tag: latest
env:
TZ: America/New_York
service:
main:
ports:
http:
port: 5055
probes:
liveness:
enabled: false
ingress:
main:
enabled: true
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-production"
traefik.ingress.kubernetes.io/router.entrypoints: websecure
hosts:
- host: "k3sjlyser.***REMOVED***"
paths:
- path: /
pathType: Prefix
persistence:
config:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/jellyseerr
mountPath: /app/config
resources:
requests:
cpu: 1m
memory: 140Mi
limits:
memory: 300Mi

View File

@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ./helm-release.yaml

View File

@ -5,4 +5,6 @@ resources:
- ./network_policy.yaml - ./network_policy.yaml
- ./komga - ./komga
- ./kavita - ./kavita
- ./jellyfin - ./jellyfin
- ./jellyseerr
- ./audiobookshelf