fix(horizon): add missing job annotations to db-sync

This is pretty standard in all the other charts to allow custom job
annotations to be applied to the db-sync job.

Change-Id: I9062356aadd4049ab68c514c9755a052f52cdfb9
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
Doug Goldstein
2025-07-24 17:00:18 -05:00
parent 80041dfbb5
commit bd696ef9d6
2 changed files with 6 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ metadata:
helm.sh/hook: post-install,post-upgrade
helm.sh/hook-weight: "-4"
{{- end }}
{{ tuple $serviceAccountName $envAll | include "helm-toolkit.snippets.custom_job_annotations" | indent 4 -}}
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
spec:
template:

View File

@@ -0,0 +1,5 @@
---
fixes:
- |
Fix missing job annotation support from values.yaml on the db-sync job.
...