185 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			185 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
lidarr2:
 | 
						|
  controllers:
 | 
						|
    main:
 | 
						|
      type: deployment
 | 
						|
      replicas: 1
 | 
						|
      strategy: Recreate
 | 
						|
      revisionHistoryLimit: 3
 | 
						|
      pod:
 | 
						|
        securityContext:
 | 
						|
          runAsUser: 568
 | 
						|
          runAsGroup: 568
 | 
						|
          fsGroup: 568
 | 
						|
          fsGroupChangePolicy: OnRootMismatch
 | 
						|
          supplementalGroups:
 | 
						|
            - 44
 | 
						|
            - 100
 | 
						|
            - 109
 | 
						|
            - 65539
 | 
						|
      containers:
 | 
						|
        main:
 | 
						|
          image:
 | 
						|
            repository: ghcr.io/onedr0p/lidarr
 | 
						|
            tag: 2.4.3.4248
 | 
						|
            pullPolicy: IfNotPresent
 | 
						|
          env:
 | 
						|
            - name: TZ
 | 
						|
              value: US/Central
 | 
						|
            - name: LIDARR__POSTGRES_MAIN_DB
 | 
						|
              value: lidarr-main
 | 
						|
            - name: LIDARR__POSTGRES_LOG_DB
 | 
						|
              value: lidarr-log
 | 
						|
            - name: LIDARR__POSTGRES_HOST
 | 
						|
              valueFrom:
 | 
						|
                secretKeyRef:
 | 
						|
                  name: lidarr2-postgresql-16-cluster-app
 | 
						|
                  key: host
 | 
						|
            - name: LIDARR__POSTGRES_PORT
 | 
						|
              valueFrom:
 | 
						|
                secretKeyRef:
 | 
						|
                  name: lidarr2-postgresql-16-cluster-app
 | 
						|
                  key: port
 | 
						|
            - name: LIDARR__POSTGRES_USER
 | 
						|
              valueFrom:
 | 
						|
                secretKeyRef:
 | 
						|
                  name: lidarr2-postgresql-16-cluster-app
 | 
						|
                  key: username
 | 
						|
            - name: LIDARR__POSTGRES_PASSWORD
 | 
						|
              valueFrom:
 | 
						|
                secretKeyRef:
 | 
						|
                  name: lidarr2-postgresql-16-cluster-app
 | 
						|
                  key: password
 | 
						|
          probes:
 | 
						|
            liveness:
 | 
						|
              enabled: false
 | 
						|
              custom: true
 | 
						|
              spec:
 | 
						|
                exec:
 | 
						|
                  command:
 | 
						|
                  - /usr/bin/env
 | 
						|
                  - bash
 | 
						|
                  - -c
 | 
						|
                  - curl --fail localhost:8686/api/v1/system/status?apiKey=`IFS=\> && while
 | 
						|
                    read -d \< E C; do if [[ $E = "ApiKey" ]]; then echo $C; fi; done < /config/config.xml`
 | 
						|
                failureThreshold: 5
 | 
						|
                initialDelaySeconds: 60
 | 
						|
                periodSeconds: 10
 | 
						|
                successThreshold: 1
 | 
						|
                timeoutSeconds: 10
 | 
						|
          resources:
 | 
						|
            requests:
 | 
						|
              cpu: 100m
 | 
						|
              memory: 256Mi
 | 
						|
        metrics:
 | 
						|
          image:
 | 
						|
            repository: ghcr.io/onedr0p/exportarr
 | 
						|
            tag: v2.0.1
 | 
						|
            pullPolicy: IfNotPresent
 | 
						|
          args: ["lidarr"]
 | 
						|
          env:
 | 
						|
            - name: URL
 | 
						|
              value: http://localhost
 | 
						|
            - name: CONFIG
 | 
						|
              value: /config/config.xml
 | 
						|
            - name: PORT
 | 
						|
              value: 9792
 | 
						|
            - name: ENABLE_ADDITIONAL_METRICS
 | 
						|
              value: false
 | 
						|
            - name: ENABLE_UNKNOWN_QUEUE_ITEMS
 | 
						|
              value: false
 | 
						|
          resources:
 | 
						|
            requests:
 | 
						|
              cpu: 100m
 | 
						|
              memory: 256Mi
 | 
						|
  serviceAccount:
 | 
						|
    create: true
 | 
						|
  service:
 | 
						|
    main:
 | 
						|
      controller: main
 | 
						|
      ports:
 | 
						|
        http:
 | 
						|
          port: 80
 | 
						|
          targetPort: 8686
 | 
						|
          protocol: HTTP
 | 
						|
        metrics:
 | 
						|
          port: 9792
 | 
						|
          targetPort: 9792
 | 
						|
          protocol: TCP
 | 
						|
  ingress:
 | 
						|
    main:
 | 
						|
      enabled: true
 | 
						|
      className: traefik
 | 
						|
      annotations:
 | 
						|
        traefik.ingress.kubernetes.io/router.entrypoints: websecure
 | 
						|
        traefik.ingress.kubernetes.io/router.tls: "true"
 | 
						|
        cert-manager.io/cluster-issuer: letsencrypt-issuer
 | 
						|
      hosts:
 | 
						|
        - host: lidarr.alexlebens.net
 | 
						|
          paths:
 | 
						|
            - path: /
 | 
						|
              pathType: Prefix
 | 
						|
              service:
 | 
						|
                name: lidarr2
 | 
						|
                port: 80
 | 
						|
      tls:
 | 
						|
        - secretName: lidarr2-secret-tls
 | 
						|
          hosts:
 | 
						|
            - lidarr.alexlebens.net
 | 
						|
    tailscale:
 | 
						|
      enabled: true
 | 
						|
      className: tailscale
 | 
						|
      hosts:
 | 
						|
        - host: lidarr-cl01tl
 | 
						|
          paths:
 | 
						|
            - path: /
 | 
						|
              pathType: Prefix
 | 
						|
              service:
 | 
						|
                name: lidarr2
 | 
						|
                port: 80
 | 
						|
      tls:
 | 
						|
        - hosts:
 | 
						|
            - lidarr-cl01tl
 | 
						|
  persistence:
 | 
						|
    config:
 | 
						|
      storageClass: ceph-block
 | 
						|
      accessMode: ReadWriteOnce
 | 
						|
      size: 5Gi
 | 
						|
      retain: true
 | 
						|
      advancedMounts:
 | 
						|
        main:
 | 
						|
          main:
 | 
						|
            - path: /config
 | 
						|
              readOnly: false
 | 
						|
          metrics:
 | 
						|
            - path: /config
 | 
						|
              readOnly: true
 | 
						|
    media:
 | 
						|
      existingClaim: lidarr2-nfs-storage
 | 
						|
      advancedMounts:
 | 
						|
        main:
 | 
						|
          main:
 | 
						|
            - path: /mnt/store
 | 
						|
              readOnly: false
 | 
						|
postgres-16-cluster:
 | 
						|
  mode: standalone
 | 
						|
  cluster:
 | 
						|
    walStorage:
 | 
						|
      storageClass: local-path
 | 
						|
    storage:
 | 
						|
      storageClass: local-path
 | 
						|
    monitoring:
 | 
						|
      enabled: true
 | 
						|
      prometheusRule:
 | 
						|
        enabled: false
 | 
						|
    initdb:
 | 
						|
      postInitSQL:
 | 
						|
        - CREATE DATABASE "lidarr-main" OWNER "app";
 | 
						|
        - CREATE DATABASE "lidarr-log" OWNER "app";
 | 
						|
  backup:
 | 
						|
    enabled: true
 | 
						|
    endpointURL: https://s3.us-east-2.amazonaws.com
 | 
						|
    destinationPath: s3://cl01tl-postgresql-backups/lidarr2
 | 
						|
    endpointCredentials: lidarr2-postgresql-16-cluster-backup-secret
 | 
						|
    backupIndex: 1
 | 
						|
    retentionPolicy: 14d
 |