From 53d9fb3a6ed0f30c23ed0463077a5254fb56da53 Mon Sep 17 00:00:00 2001 From: gilgamezh Date: Fri, 15 Aug 2025 17:35:39 +0200 Subject: [PATCH] feat: configure Plex for automatic latest image updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change Plex image tag from 1.41.8 to latest for auto-updates - Switch ArgoCD Image Updater strategy to 'digest' for latest tag tracking - Enables automatic detection of newer Plex versions - Tests complete GitOps workflow with image auto-updates 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- applications/plex.yaml | 6 +++--- helm-values/plex_values.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/applications/plex.yaml b/applications/plex.yaml index c009c29..14ddb57 100644 --- a/applications/plex.yaml +++ b/applications/plex.yaml @@ -5,9 +5,9 @@ metadata: namespace: argocd annotations: # Enable automatic image updates for Plex - argocd-image-updater.argoproj.io/image-list: plex=linuxserver/plex - # Use newest-build strategy to detect newer versions than 1.41.8 - argocd-image-updater.argoproj.io/plex.update-strategy: newest-build + argocd-image-updater.argoproj.io/image-list: plex=linuxserver/plex:latest + # Use digest strategy to track latest tag updates + argocd-image-updater.argoproj.io/plex.update-strategy: digest # Write changes back to Git repository (GitOps workflow) argocd-image-updater.argoproj.io/write-back-method: git # Git configuration for write-back diff --git a/helm-values/plex_values.yml b/helm-values/plex_values.yml index 93c79db..54be0c3 100644 --- a/helm-values/plex_values.yml +++ b/helm-values/plex_values.yml @@ -2,7 +2,7 @@ claimToken: "claim-Ku2YYmJzDB1mpyG6YD7x" image: repository: linuxserver/plex - tag: 1.41.8 + tag: latest pullPolicy: Always