chore(deps): update container image aceberg/watchyourlan to v2.0.0@c1bc720 by renovate (#25695)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| aceberg/watchyourlan | major | `1.0.6` -> `2.0.0` |

---

> [!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**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOC41OC4wIiwidXBkYXRlZEluVmVyIjoiMzguNTguMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJ1cGRhdGUvZG9ja2VyL2dlbmVyYWwvbWFqb3IiXX0=-->

---------

Co-authored-by: kqmaverick <kqmaverick@gmail.com>
Co-authored-by: kqmaverick <121722567+kqmaverick@users.noreply.github.com>
This commit is contained in:
TrueCharts Bot
2024-08-31 10:13:14 -07:00
committed by GitHub
co-authored by kqmaverick kqmaverick
parent d0dae6b84c
commit a5a98144c9
2 changed files with 16 additions and 9 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ annotations:
truecharts.org/min_helm_version: "3.11" truecharts.org/min_helm_version: "3.11"
truecharts.org/train: stable truecharts.org/train: stable
apiVersion: v2 apiVersion: v2
appVersion: 1.0.6 appVersion: 2.0.0
dependencies: dependencies:
- name: common - name: common
version: 24.1.5 version: 24.1.5
@@ -33,4 +33,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/watchyourlan - https://github.com/truecharts/charts/tree/master/charts/stable/watchyourlan
- https://hub.docker.com/r/aceberg/watchyourlan - https://hub.docker.com/r/aceberg/watchyourlan
type: application type: application
version: 10.1.3 version: 11.0.0
+14 -7
View File
@@ -1,6 +1,6 @@
image: image:
repository: aceberg/watchyourlan repository: aceberg/watchyourlan
tag: 1.0.6@sha256:c42ce1dcb1af6dac44d3674f24511558cf89b99982cee8843016fd8ad3935871 tag: 2.0.0@sha256:c1bc72021443ddbea860b78ffeb871ab9a3edec1b15e35413c84470eee5456f3
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
securityContext: securityContext:
container: container:
@@ -17,8 +17,8 @@ watchyourlan:
gui_ip: "0.0.0.0" gui_ip: "0.0.0.0"
interfaces: interfaces:
- enp1s0 - enp1s0
theme: darkly theme: sand
timeout: 300 timeout: 120
shoutrrr_url: "" shoutrrr_url: ""
service: service:
main: main:
@@ -33,6 +33,11 @@ persistence:
portal: portal:
open: open:
enabled: true enabled: true
cnpg:
main:
enabled: true
user: watchyourlan
database: watchyourlan
workload: workload:
main: main:
podSpec: podSpec:
@@ -49,11 +54,13 @@ workload:
type: http type: http
path: / path: /
env: env:
GUIPORT: "{{ .Values.service.main.ports.main.port }}" PORT: "{{ .Values.service.main.ports.main.port }}"
DBPATH: /data/db.sqlite # 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 # User Defined
GUIIP: "{{ .Values.watchyourlan.gui_ip }}" HOST: "{{ .Values.watchyourlan.gui_ip }}"
IFACE: '{{ join " " .Values.watchyourlan.interfaces }}' IFACES: '{{ join " " .Values.watchyourlan.interfaces }}'
THEME: "{{ .Values.watchyourlan.theme }}" THEME: "{{ .Values.watchyourlan.theme }}"
TIMEOUT: "{{ .Values.watchyourlan.timeout }}" TIMEOUT: "{{ .Values.watchyourlan.timeout }}"
SHOUTRRR_URL: "{{ .Values.watchyourlan.shoutrrr_url }}" SHOUTRRR_URL: "{{ .Values.watchyourlan.shoutrrr_url }}"