Update tutorial.md to fix a few minor errors
Signed-off-by: Kei Sawada <k@swd.cc>
This commit is contained in:
parent
ed40d645cd
commit
a50f352eb4
1 changed files with 3 additions and 3 deletions
|
@ -300,15 +300,15 @@ cd $GOPATH/src/github.com/kubernetes-incubator/cri-o
|
||||||
Next create the Pod and capture the Pod ID for later use:
|
Next create the Pod and capture the Pod ID for later use:
|
||||||
|
|
||||||
```
|
```
|
||||||
POD_ID=$(sudo crictl runs test/testdata/sandbox_config.json)
|
POD_ID=$(sudo crictl runp test/testdata/sandbox_config.json)
|
||||||
```
|
```
|
||||||
|
|
||||||
> sudo crictl runs test/testdata/sandbox_config.json
|
> sudo crictl runp test/testdata/sandbox_config.json
|
||||||
|
|
||||||
Use the `crictl` command to get the status of the Pod:
|
Use the `crictl` command to get the status of the Pod:
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo crictl inspects --output table $POD_ID
|
sudo crictl inspectp --output table $POD_ID
|
||||||
```
|
```
|
||||||
|
|
||||||
Output:
|
Output:
|
||||||
|
|
Loading…
Reference in a new issue