From e67baed47d454c5c2ef2998f651859aa18f239e0 Mon Sep 17 00:00:00 2001 From: Paul Stone Date: Tue, 19 May 2026 10:32:39 +0100 Subject: [PATCH 1/2] [patch] include mas_manual_route_mgmt in the install pipeline --- src/mas/devops/templates/pipelinerun-install.yml.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index 6a700338..7b9dfc62 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -545,6 +545,10 @@ spec: - name: mas_ingress_controller_name value: "{{ mas_ingress_controller_name }}" {%- endif %} +{%- if mas_manual_route_mgmt is defined %} + - name: mas_manual_route_mgmt + value: "{{ mas_manual_route_mgmt }}" +{%- endif %} {%- if mas_use_service_mesh is defined and mas_use_service_mesh != "" %} - name: mas_use_service_mesh value: "{{ mas_use_service_mesh }}" From 5c0a752c9ef9aafef8d97e93e000b1a8e4fc161f Mon Sep 17 00:00:00 2001 From: Paul Stone Date: Tue, 19 May 2026 11:28:06 +0100 Subject: [PATCH 2/2] [patch] check for empty param --- src/mas/devops/templates/pipelinerun-install.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index 2fa66812..f1321de6 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -545,7 +545,7 @@ spec: - name: mas_ingress_controller_name value: "{{ mas_ingress_controller_name }}" {%- endif %} -{%- if mas_manual_route_mgmt is defined %} +{%- if mas_manual_route_mgmt is defined and mas_manual_route_mgmt != "" %} - name: mas_manual_route_mgmt value: "{{ mas_manual_route_mgmt }}" {%- endif %}