# Default values for jackett. # This is a YAML-formatted file. # Declare variables to be passed into your templates. replicaCount: 1 image: repository: linuxserver/jackett pullPolicy: IfNotPresent tag: "latest" # Security context for the container podSecurityContext: runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 # Configurable user and group IDs securityContext: PUID: 1000 PGID: 1000 service: type: ClusterIP port: 9117 # Environment variables env: TZ: "UTC" # Auto-upgrade the application AUTO_UPDATE: "true" # Persistence configuration persistence: enabled: true storageClass: "" accessMode: ReadWriteOnce size: 1Gi # Path where Jackett stores its data mountPath: /config ingress: enabled: false className: "nginx" annotations: {} hosts: - host: jackett.local paths: - path: / pathType: Prefix tls: [] resources: limits: cpu: 1000m memory: 1Gi requests: cpu: 100m memory: 128Mi nodeSelector: {} tolerations: [] affinity: {}