From 0f61ffae27d3da17756c83a35483a16a94444c61 Mon Sep 17 00:00:00 2001 From: gilgamezh Date: Mon, 28 Jul 2025 14:12:57 +0200 Subject: [PATCH] Update node selectors and Plex version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update Plex: 1.41.3 → 1.41.8 - Fix deprecated node selector: beta.kubernetes.io/arch → kubernetes.io/arch - Add ARM64 node selector for Transmission 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- plex_values.yml | 4 ++-- transmission_values.yml | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/plex_values.yml b/plex_values.yml index 79641bf..528c84b 100644 --- a/plex_values.yml +++ b/plex_values.yml @@ -2,7 +2,7 @@ claimToken: "claim-Ku2YYmJzDB1mpyG6YD7x" image: repository: linuxserver/plex - tag: 1.41.3 + tag: 1.41.8 pullPolicy: Always @@ -19,7 +19,7 @@ rbac: create: true nodeSelector: - beta.kubernetes.io/arch: amd64 + kubernetes.io/arch: amd64 persistence: transcode: diff --git a/transmission_values.yml b/transmission_values.yml index 3ea858f..8f88f81 100644 --- a/transmission_values.yml +++ b/transmission_values.yml @@ -55,3 +55,6 @@ volumeMounts: securityContext: privileged: true + +nodeSelector: + kubernetes.io/arch: arm64