Update docker-cli-to-kubectl.md (#444)

Fix a typo.
pull/445/head
EpLiar 2021-05-23 09:51:29 +08:00 committed by GitHub
parent eb365fb6f3
commit 65a87a507c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ kubectl run [-i] [--tty] --attach <name> --image=<image>
`docker run ...` 不同的是,如果指定了 `--attach` ,我们将连接到 `stdin``stdout` 和 `stderr`,而不能控制具体连接到哪个输出流(`docker -a ...`)。
因为我们使用 Deployment 启动了容器,如果您终止了连接到的进程(例如 `ctrl-c`),容器将会重启,这跟 `docker run -it`不同。 如果想销毁该 Deployment和它的 pod您需要运行 `kubeclt delete deployment <name>`。
因为我们使用 Deployment 启动了容器,如果您终止了连接到的进程(例如 `ctrl-c`),容器将会重启,这跟 `docker run -it`不同。 如果想销毁该 Deployment和它的 pod您需要运行 `kubectl delete deployment <name>`。
#### docker ps