From 31c5ca10e24db2644aeb835fc21cb323dc6bbda5 Mon Sep 17 00:00:00 2001 From: Unkin Agent Date: Sat, 15 Aug 2026 16:55:33 +1000 Subject: [PATCH] arrstack/nzbget: fix nonexistent image tag v26.2 -> version-v26.2 (#370) The nzbget pod in namespace `arrstack` is stuck in `Init:ImagePullBackOff`. ## Why The deployment pins `artifactapi.k8s.syd1.au.unkin.net/dockerhub/linuxserver/nzbget:v26.2` on both the `seed-config` initContainer and the main `nzbget` container. linuxserver does not publish a bare `v26.2` tag - the pull fails with: ``` failed to resolve reference ".../linuxserver/nzbget:v26.2": ... not found Error: ImagePullBackOff ``` Confirmed against the artifactapi dockerhub mirror: `manifests/v26.2` -> HTTP 404. linuxserver version-pins nzbget under the `version-v.` scheme, and the immutable date tags `26.2.`. `manifests/version-v26.2` -> HTTP 200. ## Change - Set both nzbget images (initContainer + main container) to `version-v26.2`, keeping nzbget on the intended 26.2 line and matching the version-pin convention used by the sibling sonarr (`4.0.19`) / radarr (`6.3.0`) deployments. No other change. The `seed-config` init logic is unaffected - it already mirrors linuxserver's own init (`cp /app/nzbget/share/nzbget/nzbget.conf /config/nzbget.conf`), and since it seeds `/config/nzbget.conf` before the main container, linuxserver's init copy is skipped (no conflict). Instant-move download layout on the media PVCs is preserved. ## Validation - `kustomize build --enable-helm apps/overlays/au-syd1/arrstack` renders cleanly (both images -> `version-v26.2`, no stale `v26.2`). - `pre-commit run --files apps/base/arrstack/nzbget/deployment.yaml` passes (yamllint et al). Scoped to `apps/base/arrstack/nzbget/deployment.yaml` only; the top-level `apps/base/arrstack/kustomization.yaml` was not touched (another agent is editing sonarr/radarr/prowlarr on a separate branch). --------- Co-authored-by: unkin-agent Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/370 Co-authored-by: Unkin Agent Co-committed-by: Unkin Agent --- apps/base/arrstack/nzbget/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/base/arrstack/nzbget/deployment.yaml b/apps/base/arrstack/nzbget/deployment.yaml index acf6381..0fbd16f 100644 --- a/apps/base/arrstack/nzbget/deployment.yaml +++ b/apps/base/arrstack/nzbget/deployment.yaml @@ -29,7 +29,7 @@ spec: # repeated option, and the grep guard keeps re-runs idempotent so admin # UI edits to the persisted /config/nzbget.conf survive restarts. - name: seed-config - image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/linuxserver/nzbget:v26.2 + image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/linuxserver/nzbget:version-v26.2 command: - sh - -c @@ -81,7 +81,7 @@ spec: mountPath: /media/movies containers: - name: nzbget - image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/linuxserver/nzbget:v26.2 + image: artifactapi.k8s.syd1.au.unkin.net/dockerhub/linuxserver/nzbget:version-v26.2 imagePullPolicy: IfNotPresent ports: - name: http