add readarr
This commit is contained in:
@ -15,9 +15,9 @@ fullnameOverride: ""
|
||||
|
||||
serviceAccount:
|
||||
# Specifies whether a service account should be created
|
||||
create: true
|
||||
create: false
|
||||
# Automatically mount a ServiceAccount's API credentials?
|
||||
automount: true
|
||||
automount: false
|
||||
# Annotations to add to the service account
|
||||
annotations: {}
|
||||
# The name of the service account to use.
|
||||
@ -28,28 +28,37 @@ podAnnotations: {}
|
||||
podLabels: {}
|
||||
|
||||
podSecurityContext:
|
||||
runAsUser: 1000
|
||||
runAsGroup: 1000
|
||||
fsGroup: 1000
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
fsGroup: 0
|
||||
|
||||
securityContext:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
privileged: true
|
||||
capabilities:
|
||||
add:
|
||||
- CHOWN
|
||||
- FOWNER
|
||||
- SETUID
|
||||
- SETGID
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 7878
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
enabled: true
|
||||
className: "nginx"
|
||||
annotations: {}
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: "letsencrypt"
|
||||
hosts:
|
||||
- host: radarr.local
|
||||
- host: radarr.media.mumme-it.de
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls: []
|
||||
tls:
|
||||
- hosts:
|
||||
- radarr.media.mumme-it.de
|
||||
secretName: radarr-tls
|
||||
|
||||
resources:
|
||||
limits:
|
||||
@ -96,27 +105,18 @@ affinity: {}
|
||||
|
||||
# Environment variables
|
||||
env:
|
||||
TZ: "UTC"
|
||||
- name: TZ
|
||||
value: "Europe/Berlin"
|
||||
- name: PUID
|
||||
value: "0"
|
||||
- name: PGID
|
||||
value: "0"
|
||||
|
||||
# Persistence configuration
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
storageClass: ""
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
claimName: radarr-config
|
||||
mountPath: /config
|
||||
movies:
|
||||
enabled: true
|
||||
storageClass: ""
|
||||
accessMode: ReadWriteOnce
|
||||
size: 100Gi
|
||||
mountPath: /movies
|
||||
downloads:
|
||||
enabled: true
|
||||
storageClass: ""
|
||||
accessMode: ReadWriteOnce
|
||||
size: 20Gi
|
||||
mountPath: /downloads
|
||||
# If you want to use existing PVC from qBittorrent
|
||||
existingClaim: ""
|
||||
media:
|
||||
claimName: media-storage
|
||||
mountPath: /media
|
||||
|
Reference in New Issue
Block a user