This PR contains the following updates: | Package | Update | Change | |---|---|---| | [frederikemmer/MediaLyze](https://github.com/frederikemmer/MediaLyze) | minor | `0.2.5` → `0.3.0` | | [ghcr.io/frederikemmer/medialyze](https://github.com/frederikemmer/MediaLyze) | minor | `0.2.5` → `0.3.0` | --- ### Release Notes <details> <summary>frederikemmer/MediaLyze (frederikemmer/MediaLyze)</summary> ### [`v0.3.0`](https://github.com/frederikemmer/MediaLyze/blob/HEAD/CHANGELOG.md#v030) [Compare Source](https://github.com/frederikemmer/MediaLyze/compare/v0.2.5...v0.3.0) > 2026-03-26 ##### 🐛 Bug fixes - restrict `main` release publishing to real version bumps so unchanged-version commits no longer try to recreate existing tags and releases - allow adding new resolution categories from the settings UI without tripping the backend's immutable-id validation ([#​71](https://github.com/frederikemmer/MediaLyze/issues/71)) - fix resolution quality-boundary updates in the library quality settings when `minimum` / `ideal` values are changed ([#​72](https://github.com/frederikemmer/MediaLyze/pull/72)) - by [@​eivarin](https://github.com/eivarin) - keep Windows UNC network-share paths in their normal form for `ffprobe` so desktop scans analyze files on network shares instead of only listing them - lower the default resolution-category minimum width and height thresholds by 5% so cropped widescreen encodes stay in their expected buckets, and document the relaxed defaults in the settings tooltip ([#​79](https://github.com/frederikemmer/MediaLyze/issues/79)) - make desktop packaging always create the bundled `backend/ffprobe` structure, auto-detect `ffprobe` on the build machine, and use more robust packaged-path fallbacks at runtime before failing ([#​80](https://github.com/frederikemmer/MediaLyze/issues/80)) - treat NAS snapshot symlink loops under `MEDIA_ROOT` as invalid paths so browse and library setup return `400` or skip the entry instead of crashing with a `500` ([#​81](https://github.com/frederikemmer/MediaLyze/issues/81)) </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My45MS4xIiwidXBkYXRlZEluVmVyIjoiNDMuOTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZG9ja2VyIiwiZ2l0aHViLXJlbGVhc2VzIl19--> Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/5157 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
86 lines
1.9 KiB
YAML
86 lines
1.9 KiB
YAML
medialyze:
|
|
controllers:
|
|
main:
|
|
type: deployment
|
|
replicas: 1
|
|
strategy: Recreate
|
|
revisionHistoryLimit: 3
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: ghcr.io/frederikemmer/medialyze
|
|
tag: 0.3.0
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
- name: HOST_PORT
|
|
value: 8080
|
|
- name: SCAN_RUNTIME_WORKER_COUNT
|
|
value: 2
|
|
- name: TZ
|
|
value: America/Chicago
|
|
- name: MEDIA_HOST_DIR
|
|
value: /media
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 128Mi
|
|
service:
|
|
main:
|
|
controller: main
|
|
ports:
|
|
http:
|
|
port: 80
|
|
targetPort: 8080
|
|
protocol: HTTP
|
|
route:
|
|
main:
|
|
kind: HTTPRoute
|
|
parentRefs:
|
|
- group: gateway.networking.k8s.io
|
|
kind: Gateway
|
|
name: traefik-gateway
|
|
namespace: traefik
|
|
hostnames:
|
|
- medialyze.alexlebens.net
|
|
rules:
|
|
- backendRefs:
|
|
- group: ''
|
|
kind: Service
|
|
name: medialyze
|
|
port: 80
|
|
weight: 100
|
|
matches:
|
|
- path:
|
|
type: PathPrefix
|
|
value: /
|
|
persistence:
|
|
data:
|
|
forceRename: medialyze-data
|
|
storageClass: ceph-block
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
retain: true
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /config
|
|
readOnly: false
|
|
media:
|
|
existingClaim: medialyze-nfs-storage
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /media
|
|
readOnly: true
|
|
volsync-target-data:
|
|
pvcTarget: medialyze-data
|
|
local:
|
|
enabled: true
|
|
schedule: 36 11 * * *
|
|
remote:
|
|
enabled: true
|
|
schedule: 36 12 * * *
|
|
external:
|
|
enabled: true
|
|
schedule: 36 14 * * *
|