From 2f49fad8c176a80e7f33dd634f1950fced1b7cbb Mon Sep 17 00:00:00 2001 From: johnfolly Date: Fri, 17 Apr 2026 11:20:59 +0200 Subject: [PATCH 1/2] fix(template): replace hardcoded values with template variables in Webapp.yaml --- Babylon/templates/working_dir/.templates/yaml/Webapp.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Babylon/templates/working_dir/.templates/yaml/Webapp.yaml b/Babylon/templates/working_dir/.templates/yaml/Webapp.yaml index 8ca27c4a..fddcdcfb 100644 --- a/Babylon/templates/working_dir/.templates/yaml/Webapp.yaml +++ b/Babylon/templates/working_dir/.templates/yaml/Webapp.yaml @@ -3,12 +3,12 @@ namespace: remote: false spec: payload: - cloud_provider: "azure" + cloud_provider: "{{cloud_provider}}" cluster_name: "{{cluster_name}}" - domain_zone: "{{domain_zone}}" + cluster_domain: "{{cluster_domain}}" tenant: "{{tenant}}" webapp_name: "{{webapp_name}}" organization_id: "{{services['api.organization_id']}}" azure_subscription_id: "{{azure_subscription_id}}" azure_entra_tenant_id: "{{azure_entra_tenant_id}}" - powerbi_app_deploy: false \ No newline at end of file + powerbi_app_deploy: {{powerbi_app_deploy}} \ No newline at end of file From af44513ca19f971913d9206aa93fdfe570302c78 Mon Sep 17 00:00:00 2001 From: johnfolly Date: Fri, 17 Apr 2026 11:39:12 +0200 Subject: [PATCH 2/2] fix(template): correct variable name for domain zone in Webapp.yaml --- Babylon/templates/working_dir/.templates/yaml/Webapp.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Babylon/templates/working_dir/.templates/yaml/Webapp.yaml b/Babylon/templates/working_dir/.templates/yaml/Webapp.yaml index fddcdcfb..73b0ab16 100644 --- a/Babylon/templates/working_dir/.templates/yaml/Webapp.yaml +++ b/Babylon/templates/working_dir/.templates/yaml/Webapp.yaml @@ -5,10 +5,10 @@ spec: payload: cloud_provider: "{{cloud_provider}}" cluster_name: "{{cluster_name}}" - cluster_domain: "{{cluster_domain}}" + domain_zone: "{{domain_zone}}" tenant: "{{tenant}}" webapp_name: "{{webapp_name}}" organization_id: "{{services['api.organization_id']}}" azure_subscription_id: "{{azure_subscription_id}}" azure_entra_tenant_id: "{{azure_entra_tenant_id}}" - powerbi_app_deploy: {{powerbi_app_deploy}} \ No newline at end of file + powerbi_app_deploy: {{powerbi_app_deploy}}