Files
media-charts/jackett/values.yaml
2025-01-10 13:45:35 +01:00

64 lines
1.0 KiB
YAML

# 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: ""
annotations: {}
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementExact
tls: []
resources:
limits:
cpu: 1000m
memory: 1Gi
requests:
cpu: 100m
memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}