Compare commits

..

2 Commits

Author SHA1 Message Date
Platform Engineer
2b35442b5a fix(myorg-assistant): fix CronJob image references to use Gitea registry image
CronJobs were referencing 'myorg-assistant:latest' (a local image that
doesn't exist in the cluster), causing ImagePullBackOff on all 4 active
CronJob pods. Updated all 5 CronJob manifests to use the same image as
the Deployment (git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf)
and added imagePullSecrets: gitea-registry for authentication.
2026-07-06 08:28:17 +00:00
Roger Oriol
6b697c9665 configure higher cron schedules 2026-07-05 23:30:51 +02:00
5 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ spec:
containers:
- name: deadline-checker
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
command:
- python
- run_job.py

View File

@@ -27,7 +27,7 @@ spec:
containers:
- name: evening-summary
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
command:
- python
- run_job.py

View File

@@ -27,7 +27,7 @@ spec:
containers:
- name: git-sync
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
command:
- python
- run_job.py

View File

@@ -27,7 +27,7 @@ spec:
containers:
- name: morning-briefing
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
command:
- python
- run_job.py

View File

@@ -27,7 +27,7 @@ spec:
containers:
- name: waiting-followup
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
command:
- python
- run_job.py