Skip to content

Commit 15ed507

Browse files
authored
Merge pull request #304068 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents f30b6e6 + 2f73a33 commit 15ed507

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

articles/app-service/configure-sidecar.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,27 @@ For a custom container, you need to explicitly enable sidecar support. In the po
2525

2626
:::image type="content" source="media/configure-sidecar/enable-sidecar.png" alt-text="A screenshot showing a custom container app's container settings with the Start Update button highlighted.":::
2727

28-
With the Azure CLI, set `LinuxFxVersion` to `sitecontainers`. For example:
28+
With the Azure CLI, convert your web app to use the `sitecontainers` configuration. For example:
2929

3030
```azurecli
31-
az webapp config set --name <app-name> --resource-group <resource-group> --linux-fx-version sitecontainers
31+
az webapp sitecontainers convert --mode sitecontainers --name <YourWebAppName> --resource-group <YourResourceGroup>
3232
```
3333

34+
This updates the `LinuxFxVersion` to `sitecontainers` and enables support for the sidecar pattern.
35+
36+
### Revert to classic custom container (Docker) mode
37+
38+
If you need to switch back from the sidecar-enabled configuration to the classic Docker-based setup, run the following command:
39+
40+
```azurecli
41+
az webapp sitecontainers convert \
42+
--mode docker \
43+
--name <app-name> \
44+
--resource-group <resource-group>
45+
```
46+
47+
This command removes all sidecar containers and resets your app to use the classic `DOCKER|<image>` style configuration. For full details, see the [Azure CLI documentation for `az webapp sitecontainers convert`](/cli/azure/webapp/sitecontainers).
48+
3449
For more information, see [What are the differences for sidecar-enabled custom containers?](#what-are-the-differences-for-sidecar-enabled-custom-containers)
3550

3651
### What are the differences for sidecar-enabled custom containers?

articles/baremetal-infrastructure/workloads/nc2-on-azure/available-regions-skus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ When planning your NC2 on Azure design, use the following table to understand wh
4343
| Central India | AN36P |
4444
| East US | AN36 |
4545
| East US 2 | AN36P |
46-
| Germany West Central | AN36P |
46+
| Germany West Central | AN36P, AN64 |
4747
| Japan East | AN36P |
4848
| North Central US | AN36P |
4949
| Qatar Central | AN36P |

0 commit comments

Comments
 (0)