Update parallel-processing-expansion.md

sync with english version

Update parallel-processing-expansion.md

apply suggestion
This commit is contained in:
guzj11 2020-12-15 17:43:00 +08:00 committed by guzj11
parent fdf89d3f61
commit aa7ac408d2
1 changed files with 17 additions and 0 deletions

View File

@ -368,6 +368,23 @@ Kubernetes accepts and runs the Jobs you created.
-->
Kubernets 接收清单文件并执行你所创建的 Job。
<!--
### Clean up {#cleanup-2}
```shell
# Remove the Jobs you created
# Your cluster automatically cleans up their Pods
kubectl delete job -l jobgroup=jobexample
```
-->
### 清理 {#cleanup-2}
```shell
# 删除所创建的 Job
# 集群会自动清理 Job 对应的 Pod
kubectl delete job -l jobgroup=jobexample
```
<!-- discussion -->
<!--