@@ -0,0 +1,14 @@
+apiVersion: v1
+kind: PersistentVolumeClaim
+metadata:
+ name: lidarr-pvc
+ namespace: plex
+ labels:
+ app: lidarr
+spec:
+ storageClassName: ceph-block
+ accessModes:
+ - ReadWriteOnce
+ resources:
+ requests:
+ storage: 10Gi
@@ -0,0 +1,56 @@
+---
+apiVersion: apps/v1
+kind: Deployment
+ name: lidarr
+ selector:
+ matchLabels:
+ replicas: 1
+ template:
+ metadata:
+ spec:
+ containers:
+ - name: lidarr
+ image: lscr.io/linuxserver/lidarr:develop-1.1.3.2982-ls75
+ ports:
+ - containerPort: 8686
+ name: http-web-svc
+ env:
+ - name: TZ
+ value: America/New_York
+ - name: PUID
+ value: "1000"
+ - name: PGID
+ volumeMounts:
+ - mountPath: "/plex"
+ name: plex
+ - mountPath: "/config"
+ name: config
+ volumes:
+ - name: plex
+ persistentVolumeClaim:
+ claimName: plex-pvc
+ - name: config
+ claimName: lidarr-pvc
+kind: Service
+ name: lidarr-service
+ type: ClusterIP
+ - name: lidarr-web-port
+ protocol: TCP
+ port: 8686
+ targetPort: http-web-svc
@@ -170,6 +170,10 @@ nextcloud:
secretKeyRef:
name: redis-client-secret
key: REDIS_HOST_PASSWORD
+ # This will only set apache's RemoteIPTrustedProxy, not
+ # RemoteIPInternalProxy. Local IPs will not be passed through.
+ - name: TRUSTED_PROXIES
+ value: "10.42.0.0/16,127.0.0.1"
# Extra init containers that runs before pods start.
extraInitContainers: []
@@ -62,6 +62,7 @@ spec:
- name: media
persistentVolumeClaim:
claimName: plex-pvc
+ readOnly: true
- name: tmpfs
emptyDir:
medium: Memory
@@ -48,4 +48,10 @@ spec:
# Fix for acme.json file being changed to 660 from 600
podSecurityContext:
- fsGroup: null
+ fsGroup: null
+
+ service:
+ # type: ClusterIP
+ externalTrafficPolicy: Local
+ hostNetwork: true