Skip to content

Commit 1b5bd6a

Browse files
Merge branch 'main' into dev
2 parents b416507 + 8997b65 commit 1b5bd6a

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

docs/DeploymentGuide.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,47 @@ When creating your environment name, follow these rules:
435435
2. **Add Authentication Provider**
436436
- Follow steps in [App Authentication](./ConfigureAppAuthentication.md) to configure authentication in app service. Note that Authentication changes can take up to 10 minutes.
437437
438+
## Known Issues
439+
440+
**Unable to update/add environment variables in Azure Container Apps**
441+
442+
You may encounter issues when attempting to modify environment variables or container configuration in Azure Container Apps:
443+
444+
**Affected Scenarios:**
445+
- **App Authentication Setup:** When adding authentication-related environment variables (CRUD operations on env variables)
446+
- **Container Configuration:** When trying to edit ACR name, image, or tag information for Container Apps
447+
448+
**Root Cause:**
449+
This is an ongoing issue in Azure that affects the Azure Portal's ability to update Container Apps configurations.
450+
451+
**Workaround - Use Azure CLI:**
452+
453+
Until this issue is resolved, use Azure CLI commands to add or update environment variables and container configurations:
454+
455+
**For Environment Variables:**
456+
```bash
457+
# Update environment variables
458+
az containerapp update \
459+
--name <container-app-name> \
460+
--resource-group <resource-group-name> \
461+
--set-env-vars "KEY1=value1" "KEY2=value2"
462+
```
463+
464+
**For Container Image Updates:**
465+
```bash
466+
# Update container image
467+
az containerapp update \
468+
--name <container-app-name> \
469+
--resource-group <resource-group-name> \
470+
--image <registry>/<image>:<tag>
471+
```
472+
473+
📖 **Detailed CLI Documentation:**
474+
- [Manage environment variables](https://learn.microsoft.com/en-us/azure/container-apps/environment-variables?tabs=cli)
475+
- [Manage revisions](https://learn.microsoft.com/en-us/azure/container-apps/revisions-manage?tabs=bash)
476+
477+
> **Note:** This is a temporary workaround. The documentation will be updated once the Azure Portal issue is resolved.
478+
438479
## Deployment Success Validation
439480
440481
After deployment completes, use this checklist to verify everything is working correctly:

0 commit comments

Comments
 (0)