mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-04 18:00:08 +00:00
Merge pull request #14306 from mikedanese/fix
Auto commit by PR queue bot
This commit is contained in:
commit
8f831ec9fd
@ -884,8 +884,8 @@ func describeJob(job *experimental.Job, events *api.EventList) (string, error) {
|
||||
fmt.Fprintf(out, "Image(s):\t%s\n", "<no template>")
|
||||
}
|
||||
fmt.Fprintf(out, "Selector:\t%s\n", labels.FormatLabels(job.Spec.Selector))
|
||||
fmt.Fprintf(out, "Parallelism:\t%d\n", job.Spec.Parallelism)
|
||||
fmt.Fprintf(out, "Completions:\t%d\n", job.Spec.Completions)
|
||||
fmt.Fprintf(out, "Parallelism:\t%d\n", *job.Spec.Parallelism)
|
||||
fmt.Fprintf(out, "Completions:\t%d\n", *job.Spec.Completions)
|
||||
fmt.Fprintf(out, "Labels:\t%s\n", labels.FormatLabels(job.Labels))
|
||||
fmt.Fprintf(out, "Pods Statuses:\t%d Running / %d Succeeded / %d Failed\n", job.Status.Active, job.Status.Successful, job.Status.Unsuccessful)
|
||||
if job.Spec.Template != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user