TrueChartsClone/charts/stable/watchyourlan/values.yaml

56 lines
1.3 KiB
YAML

image:
repository: tccr.io/truecharts/watchyourlan
tag: v0.9.3@sha256:6fdcb870ad172953bffc9592b8892c8021423061a410c092b280248140648cc9
pullPolicy: IfNotPresent
hostNetwork: true
watchyourlan:
gui_ip: "0.0.0.0"
interfaces:
- enp1s0
theme: darkly
timeout: 300
shoutrrr_url: ""
service:
main:
ports:
main:
port: 10355
protocol: http
persistence:
data:
enabled: true
mountPath: "/data"
portal:
open:
enabled: true
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsGroup: 0
runAsUser: 0
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
type: http
path: /
readiness:
type: http
path: /
startup:
type: http
path: /
env:
GUIPORT: "{{ .Values.service.main.ports.main.port }}"
DBPATH: /data/db.sqlite
# User Defined
GUIIP: "{{ .Values.watchyourlan.gui_ip }}"
IFACE: '{{ join " " .Values.watchyourlan.interfaces }}'
THEME: "{{ .Values.watchyourlan.theme }}"
TIMEOUT: "{{ .Values.watchyourlan.timeout }}"
SHOUTRRR_URL: "{{ .Values.watchyourlan.shoutrrr_url }}"