Skip to content

Commit 63eb233

Browse files
author
Shreyas-Microsoft
committed
Change place
1 parent de5cddf commit 63eb233

File tree

1 file changed

+41
-41
lines changed

1 file changed

+41
-41
lines changed

docs/DeploymentGuide.md

Lines changed: 41 additions & 41 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 App**
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:
@@ -478,47 +519,6 @@ curl https://<your-api-endpoint>/schemavault/schemas
478519
479520
To help you get started, here's the [Sample Workflow](./SampleWorkflow.md) you can follow to try it out.
480521
481-
### Known Issues
482-
483-
**Unable to update/add environment variables in Azure Container App**
484-
485-
You may encounter issues when attempting to modify environment variables or container configuration in Azure Container Apps:
486-
487-
**Affected Scenarios:**
488-
- **App Authentication Setup:** When adding authentication-related environment variables (CRUD operations on env variables)
489-
- **Container Configuration:** When trying to edit ACR name, image, or tag information for Container Apps
490-
491-
**Root Cause:**
492-
This is an ongoing issue in Azure that affects the Azure Portal's ability to update Container Apps configurations.
493-
494-
**Workaround - Use Azure CLI:**
495-
496-
Until this issue is resolved, use Azure CLI commands to add or update environment variables and container configurations:
497-
498-
**For Environment Variables:**
499-
```bash
500-
# Update environment variables
501-
az containerapp update \
502-
--name <container-app-name> \
503-
--resource-group <resource-group-name> \
504-
--set-env-vars "KEY1=value1" "KEY2=value2"
505-
```
506-
507-
**For Container Image Updates:**
508-
```bash
509-
# Update container image
510-
az containerapp update \
511-
--name <container-app-name> \
512-
--resource-group <resource-group-name> \
513-
--image <registry>/<image>:<tag>
514-
```
515-
516-
📖 **Detailed CLI Documentation:**
517-
- [Manage environment variables](https://learn.microsoft.com/en-us/azure/container-apps/environment-variables?tabs=cli)
518-
- [Manage revisions](https://learn.microsoft.com/en-us/azure/container-apps/revisions-manage?tabs=bash)
519-
520-
> **Note:** This is a temporary workaround. The documentation will be updated once the Azure Portal issue is resolved.
521-
522522
## Clean Up Resources
523523
524524
When you're done testing the solution or need to clean up after deployment issues, you have several options:

0 commit comments

Comments
 (0)