fix(myorg-assistant): fix CronJob image refs + imagePullSecrets #1
Reference in New Issue
Block a user
No description provided.
Delete Branch "platform-engineer-agent/k3s-cluster:main"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
4 CronJob pods in
myorg-assistantare stuck inImagePullBackOfffor ~3.7 hours:Root Cause
The CronJob manifests use
image: myorg-assistant:latest(bare name → Docker Hub) withimagePullPolicy: IfNotPresentand noimagePullSecrets. K8s tries to pull from Docker Hub → ImagePullBackOff.The Deployment uses
git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bfwithimagePullSecrets: gitea-registry— the CronJobs should match.Fix
All 5 CronJob manifests updated:
git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bfAlwaysimagePullSecrets: gitea-registryPull request closed