From 63364b0e573fac668a9e8c848410f94598fcce5d Mon Sep 17 00:00:00 2001 From: Nicholas Kuechler Date: Mon, 24 Mar 2025 16:33:27 -0500 Subject: [PATCH] fix(nova): Include custom job annotations for the nova-cell-setup job. Change-Id: If9c6fa1f2c3a8821ded125b39921f247482335d5 --- nova/templates/job-cell-setup.yaml | 1 + releasenotes/notes/nova-b0749b6144e2b871.yaml | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 releasenotes/notes/nova-b0749b6144e2b871.yaml diff --git a/nova/templates/job-cell-setup.yaml b/nova/templates/job-cell-setup.yaml index 1ba49cb4b5..f6e51a4ff8 100644 --- a/nova/templates/job-cell-setup.yaml +++ b/nova/templates/job-cell-setup.yaml @@ -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: diff --git a/releasenotes/notes/nova-b0749b6144e2b871.yaml b/releasenotes/notes/nova-b0749b6144e2b871.yaml new file mode 100644 index 0000000000..e70daa3a8d --- /dev/null +++ b/releasenotes/notes/nova-b0749b6144e2b871.yaml @@ -0,0 +1,4 @@ +--- +nova: + - Add custom annotations to the nova-cell-setup job +...