Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit db7ee90

Browse files
committed
feat: ability to add pod annotations for cron-job template
1 parent a45da57 commit db7ee90

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

charts/cron-job/templates/cronJob.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ spec:
1313
jobTemplate:
1414
spec:
1515
template:
16+
metadata:
17+
annotations:
18+
{{- with .Values.podAnnotations }}
19+
{{- toYaml . | nindent 12 }}
20+
{{- end }}
1621
spec:
1722
{{- with .Values.imagePullSecrets }}
1823
imagePullSecrets:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
suite: test cron job
2+
templates:
3+
- cronJob.yaml
4+
tests:
5+
- it: Should set pod annotations
6+
set:
7+
podAnnotations:
8+
annotation-one: no-such-annotation
9+
annotation-two: no-such-annotation
10+
asserts:
11+
- template: cronJob.yaml
12+
documentIndex: 0
13+
equal:
14+
path: spec.jobTemplate.spec.template.metadata.annotations
15+
value:
16+
annotation-one: no-such-annotation
17+
annotation-two: no-such-annotation

0 commit comments

Comments
 (0)