You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you create this Job, the control plane creates a series of Pods, one for each index you specified. The value of `.spec.parallelism` determines how many can run at once whereas `.spec.completions` determines how many Pods the Job creates in total.
190
190
191
191
Because `.spec.parallelism` is less than `.spec.completions`, the control plane waits for some of the first Pods to complete before starting more of them.
192
-
193
-
Once you have created the Job, wait a moment then check on progress:
194
192
-->
195
193
当你创建此 Job 时,控制平面会创建一系列 Pod,你指定的每个索引都会运行一个 Pod。
196
194
`.spec.parallelism` 的值决定了一次可以运行多少个 Pod,
@@ -199,14 +197,27 @@ Once you have created the Job, wait a moment then check on progress:
199
197
因为 `.spec.parallelism` 小于 `.spec.completions`,
200
198
所以控制平面在启动更多 Pod 之前,将等待第一批的某些 Pod 完成。
201
199
202
-
创建 Job 后,稍等片刻,就能检查进度:
200
+
<!--
201
+
You can wait for the Job to succeed, with a timeout:
0 commit comments