a7b3ce0e23
* remove strategy * move runAsNonRoot to securityContext * Add podSecurityContext and securityContext to values pt1 * Add podSecurityContext and securityContext to values pt2 * Add podSecurityContext and securityContext to values pt3 * Add podSecurityContext and securityContext to values pt4 * Add podSecurityContext and securityContext to values pt5 * fix empty lines * Remove secCont from NC - values * fixPermissions for some apps * on apps with perm prob, set fsGroup to 0 also
39 lines
697 B
YAML
39 lines
697 B
YAML
# Default values for Jackett.
|
|
|
|
image:
|
|
repository: deepquestai/deepstack
|
|
pullPolicy: IfNotPresent
|
|
tag: cpu-2021.02.1
|
|
|
|
service:
|
|
main:
|
|
enabled: true
|
|
ports:
|
|
main:
|
|
port: 5000
|
|
|
|
envTpl:
|
|
# Permissions Settings
|
|
USER_ID: "{{ .Values.env.PUID }}"
|
|
GROUP_ID: "{{ .Values.env.PGID }}"
|
|
|
|
env:
|
|
PUID: "568"
|
|
PGID: "568"
|
|
# TZ: UTC
|
|
VISION-FACE: "True"
|
|
VISION-DETECTION: "True"
|
|
VISION-SCENE: "True"
|
|
# Path to custom models (needs to be on documentation)
|
|
MODELSTORE-DETECTION: "/modelstore/detection"
|
|
# High|Medium|Low
|
|
MODE: "High"
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/datastore"
|
|
type: pvc
|
|
accessMode: ReadWriteOnce
|
|
size: "100Gi"
|