70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: audiobookshelf
|
|
namespace: media
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 3.1.0
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjws-charts
|
|
namespace: flux-system
|
|
|
|
values:
|
|
controllers:
|
|
main:
|
|
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: ghcr.io/advplyr/audiobookshelf
|
|
tag: 2.12.3
|
|
|
|
service:
|
|
app:
|
|
controller: main
|
|
|
|
ports:
|
|
http:
|
|
port: 80
|
|
|
|
ingress:
|
|
main:
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
|
|
hosts:
|
|
- host: "audiobooks.${SECRET_NEW_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
service:
|
|
identifier: app
|
|
port: http
|
|
|
|
persistence:
|
|
config:
|
|
type: hostPath
|
|
hostPath: /mnt/MainPool/Kubernetes/audiobookshelf
|
|
globalMounts:
|
|
- path: /config
|
|
|
|
storage:
|
|
type: hostPath
|
|
hostPath: /mnt/MainPool/Media/Media
|
|
globalMounts:
|
|
- path: /storage
|
|
|
|
metadata:
|
|
type: persistentVolumeClaim
|
|
size: 12Gi
|
|
storageClass: mainpool-hostpath
|
|
accessMode: ReadWriteOnce
|
|
globalMounts:
|
|
- path: /metadata
|