Skip to content

Commit ea99540

Browse files
authored
Fix CLI extension
1 parent 479bd39 commit ea99540

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

articles/container-apps/sessions-code-interpreter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To create a code interpreter session pool using the Azure CLI, ensure you have t
4545
az upgrade
4646

4747
# Install or upgrade the Azure Container Apps extension
48-
az extension add --name containerapp --upgrade --allow-preview -y
48+
az extension add --name containerapp --upgrade --allow-preview true -y
4949
```
5050

5151
Use the `az containerapps sessionpool create` command to create the pool. The following example creates a Python code interpreter session pool named `my-session-pool`. Make sure to replace `<RESOURCE_GROUP>` with your resource group name before you run the command.

articles/container-apps/sessions-custom-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To create a custom container session pool using the Azure CLI, ensure you have t
4242

4343
```bash
4444
az upgrade
45-
az extension add --name containerapp --upgrade --allow-preview -y
45+
az extension add --name containerapp --upgrade --allow-preview true -y
4646
```
4747

4848
Custom container session pools require a workload profile enabled Azure Container Apps environment. If you don't have an environment, use the `az containerapp env create -n <ENVIRONMENT_NAME> -g <RESOURCE_GROUP> --location <LOCATION> --enable-workload-profiles` command to create one.

includes/container-apps/sessions-tutorial-prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The sample app in this quickstart uses an LLM from Azure OpenAI. It also uses Az
2929
```bash
3030
az extension remove --name containerapp
3131
az extension add \
32-
--source https://acacli.blob.core.windows.net/sessionspreview/containerapp-0.3.50-py2.py3-none-any.whl \
32+
--name containerapp \
3333
--allow-preview true -y
3434
```
3535

0 commit comments

Comments
 (0)