fix(nova): Include custom job annotations for the nova-cell-setup job.

Change-Id: If9c6fa1f2c3a8821ded125b39921f247482335d5
This commit is contained in:
Nicholas Kuechler 2025-03-24 16:33:27 -05:00
parent b6fa5ad3dc
commit 63364b0e57
2 changed files with 5 additions and 0 deletions
nova/templates
releasenotes/notes

@ -26,6 +26,7 @@ metadata:
{{ tuple $envAll "nova" "cell-setup" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 4 }}
annotations:
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
{{ tuple "nova_cell_setup" $envAll | include "helm-toolkit.snippets.custom_job_annotations" | indent 4 }}
spec:
template:
metadata:

@ -0,0 +1,4 @@
---
nova:
- Add custom annotations to the nova-cell-setup job
...