Skip to content

Commit 2730300

Browse files
authored
Fix TOC indentation and minor corrections
1 parent 59d2774 commit 2730300

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

articles/container-apps/TOC.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,16 @@
126126
href: storage-mounts.md
127127
- name: Create an Azure Files storage mount
128128
href: storage-mounts-azure-files.md
129-
- name: Use dynamic sessions
129+
- name: Use dynamic sessions
130+
items:
131+
- name: Code interpreter sessions
130132
items:
131-
- name: Code interpreter sessions
132-
items:
133-
- name: LangChain
134-
href: sessions-tutorial-langchain.md
135-
- name: LlamaIndex
136-
href: sessions-tutorial-llamaindex.md
137-
- name: Semantic Kernel
138-
href: sessions-tutorial-semantic-kernel.md
133+
- name: LangChain
134+
href: sessions-tutorial-langchain.md
135+
- name: LlamaIndex
136+
href: sessions-tutorial-llamaindex.md
137+
- name: Semantic Kernel
138+
href: sessions-tutorial-semantic-kernel.md
139139
- name: Event-driven processing
140140
items:
141141
- name: With an app

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ az containerapp sessionpool create \
5858
--resource-group <RESOURCE_GROUP> \
5959
--location westus2 \
6060
--container-type PythonLTS \
61-
--max-concurrent-sessions 100 \
61+
--max-sessions 100 \
6262
--cooldown-period 300 \
63-
--egress-enabled false
63+
--network-status EgressDisabled
6464
```
6565

6666
You can define the following settings when you create a session pool:
@@ -70,7 +70,7 @@ You can define the following settings when you create a session pool:
7070
| `--container-type` | The type of code interpreter to use. The only supported value is `PythonLTS`. |
7171
| `--max-concurrent-sessions` | The maximum number of allocated sessions allowed concurrently. The maximum value is `600`. |
7272
| `--cooldown-period` | The number of allowed idle seconds before termination. The idle period is reset each time the session's API is called. The allowed range is between `300` and `3600`. |
73-
| `--egress-enabled` | Designates whether outbound network traffic is allowed from the session. The default value is `false`. |
73+
| `--network-status` | Designates whether outbound network traffic is allowed from the session. Valid values are `EgressDisabled` (default) and `EgressEnabled`. |
7474

7575
> [!IMPORTANT]
7676
> If you enable egress, code running in the session can access the internet. Use caution when the code is untrusted as it can be used to perform malicious activities such as denial-of-service attacks.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The sample app in this quickstart uses an LLM from Azure OpenAI. It also uses Az
9090
--name $SESSION_POOL_NAME \
9191
--resource-group $RESOURCE_GROUP_NAME \
9292
--location $SESSION_POOL_LOCATION \
93-
--max-concurrent-sessions 100 \
93+
--max-sessions 100 \
9494
--container-type PythonLTS \
9595
--cooldown-period 300
9696
```

0 commit comments

Comments
 (0)