Skip to content

Commit cb3a2ec

Browse files
committed
update based on comments
1 parent b888c50 commit cb3a2ec

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/container-apps/container-debug-console.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can connect to debug console using the Azure CLI.
2323

2424

2525
> [!NOTE]
26-
> Debug Console will create a separate container, which will share underlying resource with connected container(If the debug console container already exists when you try to connect to, we will reuse the existing one instead of creating a new one. At most 1 debug console container will be created per replicae). If you do not need to use a existing debug console container any more, please make sure to enter **exit** or use **Ctrl-D** to explicitly exit.
26+
> Debug Console will create a separate container, which will share underlying resources with the container your app is running on. If a debug container already exists, Debug Console will reuse the existing one instead of creating a new one. There will be at most 1 running debug container per Container App replica. If you do not need to keep a debug container running any more, please type **exit** or press **Ctrl + D** in Debug Console session.
2727
2828
> [!NOTE]
2929
> If you encounter input missing in debug console, you can try to use **Ctrl-D** to exit and re-connect to debug console again.
@@ -52,7 +52,7 @@ az containerapp debug `
5252

5353
---
5454

55-
To connect to a container debug console in a container app with multiple revisions, replicas, and containers include the following parameters in the `az containerapp debug` command.
55+
To connect to a container debug console in a container app with multiple revisions, replicas, and containers, include the following parameters in the `az containerapp debug` command.
5656

5757
| Argument | Description |
5858
|----------|-------------|
@@ -134,7 +134,7 @@ az containerapp debug `
134134

135135
## Built-in tools in Debug Console
136136

137-
We will pre-install below diagnostic tools to help you troubleshoot issues more easily in debug console.
137+
We pre-installed below diagnostic tools to help you troubleshoot issues more easily in debug console.
138138

139139
- [ip-utils](https://github.com/iputils/iputils)
140140
- [net-tools](https://github.com/ecki/net-tools)
@@ -149,12 +149,12 @@ We will pre-install below diagnostic tools to help you troubleshoot issues more
149149
- [bind-utils](https://www.linuxfromscratch.org/~ken/inkscape-python-deps/blfs-book-sysv/basicnet/bind-utils.html)
150150
- [tcpping](http://www.vdberg.org/~richard/tcpping.html)
151151

152-
If you want to install other tools, you can run `tdnf install <TOOL_NAME>` command. Replace the \<PLACEHOLDERS\> with your tool's values.
152+
If you want to install other tools, you can run `tdnf install -y <TOOL_NAME>` command. Replace the \<PLACEHOLDERS\> with your tool's values.
153153

154154
For example, install JDK in debug console in a container app using the following command:
155155

156156
```bash
157-
tdnf install msopenjdk-17
157+
tdnf install -y msopenjdk-17
158158
```
159159

160160
---

0 commit comments

Comments
 (0)