k3s-cluster/cluster/apps/media/plex/helm-release.yaml

86 lines
1.7 KiB
YAML
Raw Normal View History

apiVersion: helm.toolkit.fluxcd.io/v2beta2
2023-04-11 00:30:57 -04:00
kind: HelmRelease
metadata:
name: plex
namespace: media
spec:
interval: 5m
chart:
spec:
chart: app-template
version: 1.3.x
sourceRef:
kind: HelmRepository
name: bjws-charts
namespace: flux-system
values:
2023-04-11 13:13:04 -04:00
2023-04-11 00:30:57 -04:00
image:
2023-04-12 00:46:48 -04:00
repository: lscr.io/linuxserver/plex
tag: "1.32.8"
2023-04-11 00:30:57 -04:00
env:
2023-04-12 00:43:51 -04:00
TZ: "America/New_York"
2023-04-12 00:44:09 -04:00
PUID: "1000"
PGID: "1000"
2023-04-12 00:43:51 -04:00
VERSION: "docker"
2023-04-11 00:30:57 -04:00
2023-04-11 13:33:55 -04:00
service:
main:
type: LoadBalancer
annotations:
2023-04-11 14:09:45 -04:00
metallb.universe.tf/loadBalancerIPs: "192.168.87.10"
2023-04-11 13:33:55 -04:00
metallb.universe.tf/allow-shared-ip: "main-ip-192.168.87.10"
ports:
http:
port: 32400
targetPort: 32400
2023-04-11 00:30:57 -04:00
probes:
liveness:
enabled: false
ingress:
main:
enabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-production
2023-04-13 01:21:06 -04:00
traefik.ingress.kubernetes.io/router.entrypoints: websecure
2023-04-11 00:30:57 -04:00
hosts:
2023-04-13 01:21:06 -04:00
- host: &host "plex.${SECRET_NEW_DOMAIN}"
2023-04-11 00:30:57 -04:00
paths:
- path: /
pathType: Prefix
2023-04-13 01:21:06 -04:00
tls:
- hosts:
- *host
2023-04-11 00:30:57 -04:00
persistence:
config:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/plex
mountPath: /config
storage:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Media/Media
mountPath: /storage/Media
2023-04-12 00:43:51 -04:00
# transcodes:
# enabled: true
# type: pvc
# accessMode: ReadWriteOnce
# size: 40Gi
# mountPath: /transcode
2023-04-11 00:30:57 -04:00
resources:
requests:
memory: 720Mi
limits:
memory: 5000Mi