Docs/CloudNative/Kubernetes/Base/并行运行JOB.md
2022-10-18 16:59:37 +08:00

19 lines
No EOL
450 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```
apiVersion: batch/v1
kind: Job
metadata:
name: paral-1
spec:
completions: 8 ## 本pod队列可以执行的次数8表示这个任务被执行8ci
parallelism: 2 ## 并行执行的个数2表示并行执行的pod的数量即会有2个pod同时执行
template:
spec:
containers:
- name: param
image: ubuntu
command: ["bin/sh"]
args: ["-c", "sleep 30;date"]
restartPolicy: OnFailure
```