From 5183504188245f833d817b0eb8140ee1439bdb9c Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Thu, 9 Apr 2026 15:42:40 -0400 Subject: [PATCH] Fix other duplicate Jinja2 closing tags This was done in ccccc99 for the activation worker deployment but the issue is also present in the default worker and ui deployment templates Signed-off-by: Dimitri Savineau --- roles/eda/templates/eda-default-worker.deployment.yaml.j2 | 2 +- roles/eda/templates/eda-ui.deployment.yaml.j2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/eda/templates/eda-default-worker.deployment.yaml.j2 b/roles/eda/templates/eda-default-worker.deployment.yaml.j2 index 5c7fc681..d9ecf5fc 100644 --- a/roles/eda/templates/eda-default-worker.deployment.yaml.j2 +++ b/roles/eda/templates/eda-default-worker.deployment.yaml.j2 @@ -60,7 +60,7 @@ spec: tolerations: {{ combined_default_worker.tolerations | to_nice_yaml | indent(width=8) }} {% endif %} -{% if combined_default_worker.topology_spread_constraints is defined %} %} +{% if combined_default_worker.topology_spread_constraints is defined %} topologySpreadConstraints: {{ combined_default_worker.topology_spread_constraints | to_nice_yaml | indent(width=8) }} {% endif %} diff --git a/roles/eda/templates/eda-ui.deployment.yaml.j2 b/roles/eda/templates/eda-ui.deployment.yaml.j2 index e633c26e..17d2cb54 100644 --- a/roles/eda/templates/eda-ui.deployment.yaml.j2 +++ b/roles/eda/templates/eda-ui.deployment.yaml.j2 @@ -59,7 +59,7 @@ spec: tolerations: {{ combined_ui.tolerations | to_nice_yaml | indent(width=8) }} {% endif %} -{% if combined_ui.topology_spread_constraints is defined %} %} +{% if combined_ui.topology_spread_constraints is defined %} topologySpreadConstraints: {{ combined_ui.topology_spread_constraints | to_nice_yaml | indent(width=8) }} {% endif %}