From a5a98144c98aa1d1feb31ff39c6f4f5d23169cc6 Mon Sep 17 00:00:00 2001 From: TrueCharts Bot Date: Sat, 31 Aug 2024 19:13:14 +0200 Subject: [PATCH] chore(deps): update container image aceberg/watchyourlan to v2.0.0@c1bc720 by renovate (#25695) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- - [ ] 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). --------- Co-authored-by: kqmaverick Co-authored-by: kqmaverick <121722567+kqmaverick@users.noreply.github.com> --- charts/stable/watchyourlan/Chart.yaml | 4 ++-- charts/stable/watchyourlan/values.yaml | 21 ++++++++++++++------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/charts/stable/watchyourlan/Chart.yaml b/charts/stable/watchyourlan/Chart.yaml index 99fcaefe508..29319028af3 100644 --- a/charts/stable/watchyourlan/Chart.yaml +++ b/charts/stable/watchyourlan/Chart.yaml @@ -6,7 +6,7 @@ annotations: truecharts.org/min_helm_version: "3.11" truecharts.org/train: stable apiVersion: v2 -appVersion: 1.0.6 +appVersion: 2.0.0 dependencies: - name: common version: 24.1.5 @@ -33,4 +33,4 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/watchyourlan - https://hub.docker.com/r/aceberg/watchyourlan type: application -version: 10.1.3 +version: 11.0.0 diff --git a/charts/stable/watchyourlan/values.yaml b/charts/stable/watchyourlan/values.yaml index d3d22c229fb..40a2a316f94 100644 --- a/charts/stable/watchyourlan/values.yaml +++ b/charts/stable/watchyourlan/values.yaml @@ -1,6 +1,6 @@ image: repository: aceberg/watchyourlan - tag: 1.0.6@sha256:c42ce1dcb1af6dac44d3674f24511558cf89b99982cee8843016fd8ad3935871 + tag: 2.0.0@sha256:c1bc72021443ddbea860b78ffeb871ab9a3edec1b15e35413c84470eee5456f3 pullPolicy: IfNotPresent securityContext: container: @@ -17,8 +17,8 @@ watchyourlan: gui_ip: "0.0.0.0" interfaces: - enp1s0 - theme: darkly - timeout: 300 + theme: sand + timeout: 120 shoutrrr_url: "" service: main: @@ -33,6 +33,11 @@ persistence: portal: open: enabled: true +cnpg: + main: + enabled: true + user: watchyourlan + database: watchyourlan workload: main: podSpec: @@ -49,11 +54,13 @@ workload: type: http path: / env: - GUIPORT: "{{ .Values.service.main.ports.main.port }}" - DBPATH: /data/db.sqlite + 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 - GUIIP: "{{ .Values.watchyourlan.gui_ip }}" - IFACE: '{{ join " " .Values.watchyourlan.interfaces }}' + HOST: "{{ .Values.watchyourlan.gui_ip }}" + IFACES: '{{ join " " .Values.watchyourlan.interfaces }}' THEME: "{{ .Values.watchyourlan.theme }}" TIMEOUT: "{{ .Values.watchyourlan.timeout }}" SHOUTRRR_URL: "{{ .Values.watchyourlan.shoutrrr_url }}"