Merge pull request #25631 from guzj11/patch-41

Update parallel-processing-expansion.md
pull/25718/head
Kubernetes Prow Robot 2020-12-19 04:36:25 -08:00 committed by GitHub
commit 5bba8bf55a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 -->
<!--