From 88717c61fd847cceff02ba8b3dd047e571b66c52 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Tue, 16 Jun 2026 21:07:39 +0000 Subject: [PATCH] immich-frame: whole library (last 2y), Ken Burns, weather, 30s interval 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 --- stacks/immich/frame.tf | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/stacks/immich/frame.tf b/stacks/immich/frame.tf index ab375aa4..14fbb445 100644 --- a/stacks/immich/frame.tf +++ b/stacks/immich/frame.tf @@ -17,15 +17,18 @@ resource "kubernetes_config_map" "mailserver_config" { "Settings.yml" = <<-EOF General: Layout: single - Interval: 10 - ImageZoom: false + Interval: 30 + ImageZoom: true ShowAlbumName: 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: - ImmichServerUrl: http://immich.viktorbarzin.me ApiKey: ${data.vault_kv_secret_v2.secrets.data["frame_api_key"]} - Albums: - - 1aa98849-bbd5-452b-aac0-310b210a8597 # china + ImagesFromDays: 730 EOF } }