Skip to content

Commit 2e8b1fe

Browse files
committed
prmerger feedback
1 parent 4042ac6 commit 2e8b1fe

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

articles/app-service/configure-sidecar.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This article provides practical steps for enabling and configuring sidecars in y
1313

1414
## Create a sidecar in the Azure portal
1515

16-
1. Go to your App Service resource in the Azure Portal.
16+
1. Go to your App Service resource in the Azure portal.
1717
2. Select **Deployment Center** and go to the **Containers** tab.
1818
3. Click **Add container** to add a sidecar.
1919
4. Fill in the image name, registry authentication (if needed), and environment variables.
@@ -176,7 +176,7 @@ The **Port** field in the Portal is metadata only and not used by App Service fo
176176
177177
## Add volume mounts
178178
179-
By default, the default `/home` volume is mounted to all containers unless disabled. You can configure additional volumn mounts for your sidecars.
179+
By default, the default `/home` volume is mounted to all containers unless disabled. You can configure additional volume mounts for your sidecars.
180180
181181
Volume mounts enable you to share non-persistent files and directories between containers within your Web App.
182182

articles/app-service/migrate-sidecar-multi-container-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ If your Docker Compose file is straightforward, you can use the official migrati
104104
az webapp config set --name <webapp-name> --resource-group <resource-group> --slot <slot-name> --linux-fx-version "sitecontainers"
105105
```
106106
107-
7. Restart the deployment slot, then validate the functionatity of the migrated app in the deployment slot.
107+
7. Restart the deployment slot, then validate the functionality of the migrated app in the deployment slot.
108108
109109
```azurecli
110110
az webapp restart --name <webapp-name> --resource-group <resource-group> --slot <slot-name>

articles/app-service/overview-sidecar.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Sidecars enable you to add new capabilities, such as monitoring, caching, AI, or
2525
- **Container roles:** Each sidecar-enabled app has one main container (`isMain: true`) and up to nine sidecar containers (`isMain: false`). In the container configuration, `isMain: true` designates the main app container. All others must have `isMain: false`.
2626
- **Networking:** All containers in the app share the same network namespace and communicate over `localhost`. There is no need for service name resolution, so use `localhost:<port>`. Each container must listen on a unique port. Only ports 80 and 8080 are supported for external HTTP traffic. For internal communication, use any available unique port.
2727
- **Lifecycle:** Sidecars start, stop, and scale together with the main app container. When your app scales out or in, all associated sidecar containers follow the same lifecycle automatically.
28-
- **Configuration:** Sidecars can be configured via the Azure Portal, ARM templates, or CLI. You specify the container image, environment variables, and other settings for each container. App settings are shared across all containers. You can also set container-specific environment variables.
28+
- **Configuration:** Sidecars can be configured via the Azure portal, ARM templates, or CLI. You specify the container image, environment variables, and other settings for each container. App settings are shared across all containers. You can also set container-specific environment variables.
2929
- **Volume mounts:** Each container can have its own volume mounts.
3030
- **Authentication:** Sidecars can pull images from public or private registries, including Azure Container Registry. Use managed identity or admin credentials for private registries.
3131

@@ -47,7 +47,7 @@ For existing Linux code-only apps (in built-in containers), see [Tutorial: Confi
4747
For existing custom container apps, see [Enable sidecar support for Linux custom containers](configure-sidecar.md#enable-sidecar-support-for-linux-custom-containers).
4848

4949
### How do I monitor and troubleshoot sidecars?
50-
Use Azure Monitor, Log Analytics, and the Diagnose & Solve blade in the Azure Portal. Logs from all containers are available in the App Service log stream.
50+
Use Azure Monitor, Log Analytics, and the Diagnose & Solve blade in the Azure portal. Logs from all containers are available in the App Service log stream.
5151

5252
### Are there any limitations?
5353
Persistent Azure storage is not supported for sidecars. App Service Environment (ASE) and national clouds may not be supported yet. Check the latest Azure documentation for updates.

0 commit comments

Comments
 (0)