Compare commits

..

1 Commits

Author SHA1 Message Date
Platform Engineer
48f84dceb1 fix(myorg-assistant): fix cronjob images - use gitea registry + imagePullSecrets
CronJobs referenced bare 'myorg-assistant:latest' which doesn't exist in
any registry, causing ImagePullBackOff on all 5 CronJobs for 9+ days.
Aligned with deployment.yaml:
  - image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf
  - imagePullPolicy: Always
  - imagePullSecrets: gitea-registry

Affected: deadline-checker, evening-summary, git-sync, morning-briefing, waiting-followup
2026-07-06 00:58:51 +00:00
6 changed files with 5 additions and 21 deletions

View File

@@ -1,16 +0,0 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: argocd-rbac-cm
namespace: argocd
labels:
app.kubernetes.io/name: argocd-rbac-cm
app.kubernetes.io/part-of: argocd
data:
policy.default: role:readonly
policy.csv: |
p, role:platform-engineer, applications, get, */*, allow
p, role:platform-engineer, applications, sync, */*, allow
p, role:platform-engineer, projects, get, *, allow
g, platform-engineer, role:platform-engineer
g, roger, role:admin

View File

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