From 042f1480945ecd6b2a4b691c09839ec2ed2bbb46 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 10:43:33 +0000 Subject: [PATCH 1/2] Initial plan From fea27689ea3f85466eb7d4544be3622362b6e5eb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 10:46:22 +0000 Subject: [PATCH 2/2] Fix heading structure in Known Issues section Co-authored-by: Shreyas-Microsoft <194884331+Shreyas-Microsoft@users.noreply.github.com> --- docs/DeploymentGuide.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/DeploymentGuide.md b/docs/DeploymentGuide.md index 9ea71968..51d3a2a8 100644 --- a/docs/DeploymentGuide.md +++ b/docs/DeploymentGuide.md @@ -614,22 +614,22 @@ To debug the MCP server by adding the following launch.json entry: ``` ## Known Issues -**Unable to update/add environment variables in Azure Container App** +### Unable to update/add environment variables in Azure Container App You may encounter issues when attempting to modify environment variables or container configuration in Azure Container Apps: -**Affected Scenarios:** +#### Affected Scenarios: - **App Authentication Setup:** When adding authentication-related environment variables (CRUD operations on env variables) - **Container Configuration:** When trying to edit ACR name, image, or tag information for Container Apps -**Root Cause:** +#### Root Cause: This is an ongoing issue in Azure that affects the Azure Portal's ability to update Container Apps configurations. -**Workaround - Use Azure CLI:** +#### Workaround - Use Azure CLI: Until this issue is resolved, use Azure CLI commands to add or update environment variables and container configurations: -**For Environment Variables:** +##### For Environment Variables: ```bash # Update environment variables az containerapp update \ @@ -638,7 +638,7 @@ az containerapp update \ --set-env-vars "KEY1=value1" "KEY2=value2" ``` -**For Container Image Updates:** +##### For Container Image Updates: ```bash # Update container image az containerapp update \