Skip to content

Commit 0c4d952

Browse files
Merge pull request #74 from microsoft/psl-known-issues-readme-update
docs: add known issue in deployment guide
2 parents 832fb77 + e27b57c commit 0c4d952

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

docs/DeploymentGuide.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,52 @@ Follow the detailed workflow to test the migration functionality:
316316

317317
📖 **Detailed Instructions:** See the complete [Sample Workflow](./SampleWorkflow.md) guide for step-by-step testing procedures.
318318

319+
## Known Issues
320+
321+
**Below are currently identified issues with workarounds. Please review before reaching out for support.**
322+
323+
### Unable to update/add environment variables in Azure Container App
324+
325+
You may encounter issues when attempting to modify environment variables or container configuration in Azure Container Apps:
326+
327+
**Affected Scenarios:**
328+
- **App Authentication Setup:** When adding authentication-related environment variables
329+
- **Environment Variable Management:** Updating or deleting existing environment variables
330+
- **Container Configuration:** When trying to edit ACR name, image, or tag information for Container Apps
331+
332+
**Root Cause:**
333+
A known issue in the Azure Portal prevents updating Container Apps configurations. This affects both environment variables and container settings.
334+
335+
**Workaround - Use Azure CLI:**
336+
337+
Until this issue is resolved, use Azure CLI commands to add or update environment variables and container configurations:
338+
339+
**For Environment Variables:**
340+
```bash
341+
# Update environment variables
342+
az containerapp update \
343+
--name <container-app-name> \
344+
--resource-group <resource-group-name> \
345+
--set-env-vars "KEY1=value1" "KEY2=value2"
346+
```
347+
348+
**For Container Image Updates:**
349+
```shell
350+
# Update container image
351+
az containerapp update \
352+
--name <container-app-name> \
353+
--resource-group <resource-group-name> \
354+
--image <registry>/<image>:<tag>
355+
```
356+
357+
📖 **Detailed CLI Documentation:**
358+
- [Manage environment variables](https://learn.microsoft.com/en-us/azure/container-apps/environment-variables?tabs=cli)
359+
- [Manage revisions](https://learn.microsoft.com/en-us/azure/container-apps/revisions-manage?tabs=bash)
360+
361+
> **Note:** This is a temporary workaround. The documentation will be updated once the Azure Portal issue is resolved.
362+
363+
---
364+
319365
## Step 6: Clean Up (Optional)
320366

321367
### Remove All Resources

0 commit comments

Comments
 (0)