apiVersion: apps/v1 kind: Deployment metadata: annotations: kompose.cmd: kompose convert -f compose-ll.yaml kompose.version: 1.38.0 (HEAD) labels: io.kompose.service: lazylibrarian name: lazylibrarian spec: replicas: 1 selector: matchLabels: io.kompose.service: lazylibrarian strategy: type: Recreate template: metadata: annotations: kompose.cmd: kompose convert -f compose-ll.yaml kompose.version: 1.38.0 (HEAD) labels: io.kompose.service: lazylibrarian spec: containers: - env: - name: DOCKER_MODS value: linuxserver/mods:universal-calibre|linuxserver/mods:lazylibrarian-ffmpeg - name: PGID value: "1000" - name: PUID value: "1000" - name: TZ value: America/New_York image: lscr.io/linuxserver/lazylibrarian:latest name: lazylibrarian ports: - containerPort: 5299 protocol: TCP name: web-ui volumeMounts: - mountPath: /config name: lazylibrarian-config - mountPath: /downloads name: lazylibrarian-downloads - mountPath: /data name: lazylibrarian-data restartPolicy: Always volumes: - name: lazylibrarian-config persistentVolumeClaim: claimName: lazylibrarian-config-pvc - name: lazylibrarian-downloads nfs: server: robin.home.nest path: /yarr/downloads - name: lazylibrarian-data nfs: server: robin.home.nest path: /yarr --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: lazylibrarian-config-pvc labels: recurring-job.longhorn.io/source: "enabled" recurring-job-group.longhorn.io/app-config-group: "enabled" spec: accessModes: - ReadWriteOnce storageClassName: longhorn resources: requests: storage: 4Gi