Skip to content

Commit 3b5f0d7

Browse files
committed
edited based on changes made by PM
1 parent 8319fec commit 3b5f0d7

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

articles/aks/use-pod-sandboxing.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,6 @@ To demonstrate the deployed application on the AKS cluster isn't isolated and is
217217
218218
## Verify Kernel Isolation configuration
219219
220-
221-
222220
1. To access a container inside the AKS cluster, start a shell session by running the [kubectl exec][kubectl-exec] command. In this example you're accessing the container inside the *untrusted* pod.
223221
224222
```bash
@@ -227,23 +225,22 @@ To demonstrate the deployed application on the AKS cluster isn't isolated and is
227225
228226
Kubectl connects to your cluster, runs `/bin/sh` inside the first container within the *untrusted* pod, and forward your terminal's input and output streams to the container's process. You can also start a shell session to the container hosting the *trusted* pod.
229227
230-
2. After starting a shell session to the container of the *untrusted* pod, you can run commands to verify that the *untrusted* container is running in a Nested VM that has different kernel version from the *trusted* container.
228+
2. After starting a shell session to the container of the *untrusted* pod, you can run commands to verify that the *untrusted* container is running in a nested VM that has a different kernel version compared to the *trusted* container.
231229
232-
To see the kernel version run:
230+
To see the kernel version run the following command:
233231
234232
```bash
235233
uname -r
236234
```
237235
238-
The following example resembles the nested VM kernel output from the command:
236+
The following example resembles output from the nested VM kernel:
239237
240238
```output
241239
root@untrusted:/# uname -r
242240
5.15.48.1-8.cm2
243241
```
244242
245-
246-
The following example resembles the shared VM kernel output from the command:
243+
Running the same command on the shared VM kernel resembles output from the same command used earlier:
247244
248245
```output
249246
5.15.80.mshv2-hvl1.m2

0 commit comments

Comments
 (0)