Skip to content

Commit 58fdb61

Browse files
robbeverhelstclaude
andcommitted
fix(chart): add imagePullSecrets to CronJob template
The CronJob template was missing imagePullSecrets, causing pods to fail with ImagePullBackOff when scheduled on nodes without the image cached. This aligns the CronJob pod spec with the Deployment template. Fixes #1868 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b36a11d commit 58fdb61

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

deploy/charts/distr/templates/cronjob.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ spec:
2828
{{- toYaml . | nindent 12 }}
2929
{{- end }}
3030
spec:
31+
{{- with $.Values.imagePullSecrets }}
32+
imagePullSecrets:
33+
{{- toYaml . | nindent 12 }}
34+
{{- end }}
3135
containers:
3236
- name: hub
3337
{{- with $job.args }}

0 commit comments

Comments
 (0)