* chore(deps): update helm chart common to v6 * Adapt persistence to new GUI * Adapt additional storage GUI to new storage system * Adapt values.yaml accordingly * Move transmission settings to env * fix a vaultwarden linting issue * fix firefly-iii linting issues * Use forceName to force a specific name for the DB PVC * add force name to questions.yaml as well * use newest common version * try fixing db-linking issues on vaultwarden * add deviceList option to zwave2mqtt * Fixup the deviceList for all Apps * fix linting error * Fix more transmission issues Co-authored-by: Renovate Bot <bot@renovateapp.com>
40 lines
682 B
YAML
40 lines
682 B
YAML
# Default values for Jackett.
|
|
|
|
image:
|
|
repository: deepquestai/deepstack
|
|
pullPolicy: IfNotPresent
|
|
tag: cpu-2021.02.1
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
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: emptyDir
|