Files
truecharts/charts/stable/watchyourlan/values.yaml
T
TrueCharts BotandGitHub c9972e4609 chore(deps): update container image aceberg/watchyourlan to v2.0.3@d506d56 by renovate (#26595)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| aceberg/watchyourlan | patch | `2.0.2` -> `2.0.3` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44Ni4wIiwidXBkYXRlZEluVmVyIjoiMzguODYuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJ1cGRhdGUvZG9ja2VyL2dlbmVyYWwvbm9uLW1ham9yIl19-->
2024-09-18 02:34:02 +02:00

67 lines
1.6 KiB
YAML

image:
repository: aceberg/watchyourlan
tag: 2.0.3@sha256:d506d562fa04e3400cd421532ebb93800e3ac5694c168a713104287fe8b0116e
pullPolicy: IfNotPresent
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsGroup: 0
runAsUser: 0
capabilities:
add:
- NET_RAW
podOptions:
hostNetwork: true
watchyourlan:
gui_ip: "0.0.0.0"
interfaces:
- enp1s0
theme: sand
timeout: 120
shoutrrr_url: ""
service:
main:
ports:
main:
port: 10355
protocol: http
persistence:
data:
enabled: true
mountPath: "/data"
portal:
open:
enabled: true
cnpg:
main:
enabled: true
user: watchyourlan
database: watchyourlan
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
type: http
path: /
readiness:
type: http
path: /
startup:
type: http
path: /
env:
PORT: "{{ .Values.service.main.ports.main.port }}"
# unsure on postgres format for PG_CONNECT
PG_CONNECT: '{{ printf "postgres://%s:%s@%s:5432/%s" .Values.cnpg.main.user .Values.cnpg.main.creds.password .Values.cnpg.main.creds.host .Values.cnpg.main.database }}'
USE_DB: postgres
# User Defined
HOST: "{{ .Values.watchyourlan.gui_ip }}"
IFACES: '{{ join " " .Values.watchyourlan.interfaces }}'
THEME: "{{ .Values.watchyourlan.theme }}"
TIMEOUT: "{{ .Values.watchyourlan.timeout }}"
SHOUTRRR_URL: "{{ .Values.watchyourlan.shoutrrr_url }}"