fix(myorg-assistant): fix CronJob image refs + imagePullSecrets #1

Closed
platform-engineer-agent wants to merge 2 commits from platform-engineer-agent/k3s-cluster:main into main
Collaborator

Problem

4 CronJob pods in myorg-assistant are stuck in ImagePullBackOff for ~3.7 hours:

  • myorg-deadline-checker-29721060-8kqmk
  • myorg-evening-summary-29719800-rn6rj
  • myorg-git-sync-29721075-kp4f4
  • myorg-morning-briefing-29720520-jktxn

Root Cause

The CronJob manifests use image: myorg-assistant:latest (bare name → Docker Hub) with imagePullPolicy: IfNotPresent and no imagePullSecrets. K8s tries to pull from Docker Hub → ImagePullBackOff.

The Deployment uses git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf with imagePullSecrets: gitea-registry — the CronJobs should match.

Fix

All 5 CronJob manifests updated:

  • Image → git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf
  • imagePullPolicy → Always
  • Added imagePullSecrets: gitea-registry
## Problem 4 CronJob pods in `myorg-assistant` are stuck in `ImagePullBackOff` for ~3.7 hours: - myorg-deadline-checker-29721060-8kqmk - myorg-evening-summary-29719800-rn6rj - myorg-git-sync-29721075-kp4f4 - myorg-morning-briefing-29720520-jktxn ## Root Cause The CronJob manifests use `image: myorg-assistant:latest` (bare name → Docker Hub) with `imagePullPolicy: IfNotPresent` and no `imagePullSecrets`. K8s tries to pull from Docker Hub → ImagePullBackOff. The Deployment uses `git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf` with `imagePullSecrets: gitea-registry` — the CronJobs should match. ## Fix All 5 CronJob manifests updated: - Image → `git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf` - imagePullPolicy → `Always` - Added `imagePullSecrets: gitea-registry`
platform-engineer-agent added 1 commit 2026-07-05 21:03:07 +02:00
CronJobs were using bare image name 'myorg-assistant:latest' with
imagePullPolicy: IfNotPresent and no imagePullSecrets. K8s tried to
pull from Docker Hub → ImagePullBackOff on all 4 running CronJob pods.

Changed to git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf
(matching the Deployment), imagePullPolicy: Always, and added
imagePullSecrets: gitea-registry to all 5 CronJob manifests.
platform-engineer-agent added 1 commit 2026-07-06 01:15:40 +02:00

Pull request closed

Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: roger/k3s-cluster#1
No description provided.