immich-frame: whole library (last 2y), Ken Burns, weather, 30s interval
All checks were successful
ci/woodpecker/push/default Pipeline was successful

Per Viktor: show the whole Immich library from the last 2 years instead of the
single 'china' album, enable Ken Burns pan/zoom, slow the interval to 30s, and
add the weather overlay (London, metric). OpenWeatherMap key is read from Vault
(secret/immich -> frame_weather_api_key), not hardcoded.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Viktor Barzin 2026-06-16 21:07:39 +00:00
parent cffa32fae3
commit 88717c61fd

View file

@ -17,15 +17,18 @@ resource "kubernetes_config_map" "mailserver_config" {
"Settings.yml" = <<-EOF "Settings.yml" = <<-EOF
General: General:
Layout: single Layout: single
Interval: 10 Interval: 30
ImageZoom: false ImageZoom: true
ShowAlbumName: false ShowAlbumName: false
ShowProgressBar: false ShowProgressBar: false
WeatherApiKey: ${data.vault_kv_secret_v2.secrets.data["frame_weather_api_key"]}
UnitSystem: metric
WeatherLatLong: "51.5074,-0.1278"
Language: en
Accounts: Accounts:
- ImmichServerUrl: http://immich.viktorbarzin.me - ImmichServerUrl: http://immich.viktorbarzin.me
ApiKey: ${data.vault_kv_secret_v2.secrets.data["frame_api_key"]} ApiKey: ${data.vault_kv_secret_v2.secrets.data["frame_api_key"]}
Albums: ImagesFromDays: 730
- 1aa98849-bbd5-452b-aac0-310b210a8597 # china
EOF EOF
} }
} }