# Default values for sabnzbd. # This is a YAML-formatted file. # Declare variables to be passed into your templates. replicaCount: 1 image: repository: linuxserver/sabnzbd tag: latest pullPolicy: IfNotPresent imagePullSecrets: [] nameOverride: "" fullnameOverride: "" serviceAccount: # Specifies whether a service account should be created create: true # Automatically mount a ServiceAccount's API credentials? automount: true # Annotations to add to the service account annotations: {} # The name of the service account to use. # If not set and create is true, a name is generated using the fullname template name: "" podAnnotations: {} podLabels: {} podSecurityContext: runAsUser: 0 runAsGroup: 0 fsGroup: 0 securityContext: privileged: true capabilities: add: - CHOWN - FOWNER - SETUID - SETGID service: type: ClusterIP port: 8080 ingress: enabled: false className: "" annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" hosts: - host: chart-example.local paths: - path: / pathType: ImplementationSpecific tls: [] # - secretName: chart-example-tls # hosts: # - chart-example.local resources: limits: cpu: 2000m memory: 2Gi requests: cpu: 500m memory: 512Mi livenessProbe: httpGet: path: / port: http readinessProbe: httpGet: path: / port: http autoscaling: enabled: false minReplicas: 1 maxReplicas: 100 targetCPUUtilizationPercentage: 80 # targetMemoryUtilizationPercentage: 80 # Additional volumes on the output Deployment definition. volumes: [] # - name: foo # secret: # secretName: mysecret # optional: false # Additional volumeMounts on the output Deployment definition. volumeMounts: [] # - name: foo # mountPath: "/etc/foo" # readOnly: true nodeSelector: {} tolerations: [] affinity: {} env: - name: TZ value: "Europe/Berlin" - name: PUID value: "0" - name: PGID value: "0" - name: PYTHON_EGG_CACHE value: "/config/.python-eggs" - name: PYTHONUNBUFFERED value: "1" - name: SAB_DIRECT_UNPACK value: "1" - name: SAB_DOWNLOAD_DIR value: "/media/incomplete" - name: SAB_COMPLETE_DIR value: "/media/downloads" persistence: config: claimName: sabnzbd-config mountPath: /config media: claimName: media-storage mountPath: /media