This PR contains the following updates: | Package | Update | Change | |---|---|---| | [henrygd/beszel-agent](https://github.com/henrygd/beszel) | minor | `0.19.0` → `0.20.0` | --- ### Release Notes <details> <summary>henrygd/beszel (henrygd/beszel-agent)</summary> ### [`v0.20.0`](https://github.com/henrygd/beszel/releases/tag/v0.20.0) [Compare Source](https://github.com/henrygd/beszel/compare/v0.19.0...v0.20.0) #### What's Changed - Add network monitoring from agents ([#​2266](https://github.com/henrygd/beszel/issues/2266), [#​1911](https://github.com/henrygd/beszel/issues/1911)) - Add container image update available flag ([#​2211](https://github.com/henrygd/beszel/issues/2211)) - Add btrfs filesystem reporting as storage pools ([#​2315](https://github.com/henrygd/beszel/issues/2315)) - Add persistence of view preferences and language to user settings ([#​1831](https://github.com/henrygd/beszel/issues/1831)) - Add `TRUSTED_PROXY_IPS` allowlist for `TRUSTED_AUTH_HEADER` ([#​2327](https://github.com/henrygd/beszel/issues/2327)) - Add ZFS utilities to Intel and NVIDIA agent images ([#​2288](https://github.com/henrygd/beszel/issues/2288), [#​2311](https://github.com/henrygd/beszel/issues/2311)) - Revert SMART warnings for certain attributes ([#​2296](https://github.com/henrygd/beszel/issues/2296), [#​2308](https://github.com/henrygd/beszel/issues/2308), [#​2347](https://github.com/henrygd/beszel/issues/2347)) - Improve NVMe data units display as human-readable GB/TB ([#​2303](https://github.com/henrygd/beszel/issues/2303)) - Fix agent disconnects during slow collections by extending WebSocket deadline ([#​2294](https://github.com/henrygd/beszel/issues/2294)) - Fix missing root CA certificates in base agent image ([#​2291](https://github.com/henrygd/beszel/issues/2291)) - Fix false RAID health warnings during healthy data scrubbing ([#​2109](https://github.com/henrygd/beszel/issues/2109)) - Fix ZFS monitoring when /dev/zfs is unavailable ([#​2325](https://github.com/henrygd/beszel/issues/2325)) - Fix spurious `HUB_URL` warning in SSH-only mode ([#​2316](https://github.com/henrygd/beszel/issues/2316)) - Fix idle GPU utilization display in systems table ([#​2312](https://github.com/henrygd/beszel/issues/2312)) - Fix session handling to clear auth store after token expiry ([#​2310](https://github.com/henrygd/beszel/issues/2310)) - Fix chart history handling when switching to live charts ([#​2333](https://github.com/henrygd/beszel/issues/2333)) - Update Go dependencies #### New Contributors - [@​arnolicious](https://github.com/arnolicious) made their first contribution in [#​2288](https://github.com/henrygd/beszel/pull/2288) - [@​matth3wdsouza](https://github.com/matth3wdsouza) made their first contribution in [#​2303](https://github.com/henrygd/beszel/pull/2303) - [@​anaisbetts](https://github.com/anaisbetts) made their first contribution in [#​2315](https://github.com/henrygd/beszel/pull/2315) - [@​brunob45](https://github.com/brunob45) made their first contribution in [#​2211](https://github.com/henrygd/beszel/pull/2211) - [@​ChangkeunJ](https://github.com/ChangkeunJ) made their first contribution in [#​2333](https://github.com/henrygd/beszel/pull/2333) - [@​rajtslegr](https://github.com/rajtslegr) made their first contribution in [#​2328](https://github.com/henrygd/beszel/pull/2328) - [@​jmrplens](https://github.com/jmrplens) made their first contribution in [#​2327](https://github.com/henrygd/beszel/pull/2327) **Full Changelog**: <https://github.com/henrygd/beszel/compare/v0.19.0...v0.20.0> </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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 [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC44My4wIiwidXBkYXRlZEluVmVyIjoiNDQuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: Renovate Bot <bot@renovateapp.com> Reviewed-on: https://git.ivanch.me/ivanch/haven/pulls/15
38 lines
809 B
YAML
38 lines
809 B
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: beszel-agent
|
|
namespace: infra
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: beszel-agent
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: beszel-agent
|
|
spec:
|
|
hostNetwork: true
|
|
containers:
|
|
- env:
|
|
- name: PORT
|
|
value: "45876"
|
|
- name: KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: beszel-key
|
|
key: SECRET-KEY
|
|
image: henrygd/beszel-agent:0.20.0
|
|
name: beszel-agent
|
|
ports:
|
|
- containerPort: 45876
|
|
hostPort: 45876
|
|
resources:
|
|
requests:
|
|
memory: "64Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "200m"
|
|
restartPolicy: Always
|