init helm charts
This commit is contained in:
63
jackett/values.yaml
Normal file
63
jackett/values.yaml
Normal file
@ -0,0 +1,63 @@
|
||||
# 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: {}
|
Reference in New Issue
Block a user