diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-01 15:39:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-01 15:39:35 +0200 |
commit | 394f1c26d61cc8570b49444e1f431978bf101daa (patch) | |
tree | 6b1f55e33d7c51df2084ea5365a1059237e17511 /cmd/podmanV2/report/templates.go | |
parent | 6d36d05447fd594bedebea8a9a4366d348a78290 (diff) | |
parent | 7def91910c07ee3782b2106f76877d57d646f9b4 (diff) | |
download | podman-394f1c26d61cc8570b49444e1f431978bf101daa.tar.gz podman-394f1c26d61cc8570b49444e1f431978bf101daa.tar.bz2 podman-394f1c26d61cc8570b49444e1f431978bf101daa.zip |
Merge pull request #5684 from baude/v2podps
podmanv2 pod ps
Diffstat (limited to 'cmd/podmanV2/report/templates.go')
-rw-r--r-- | cmd/podmanV2/report/templates.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/podmanV2/report/templates.go b/cmd/podmanV2/report/templates.go index f3bc06405..e46048e97 100644 --- a/cmd/podmanV2/report/templates.go +++ b/cmd/podmanV2/report/templates.go @@ -19,6 +19,9 @@ var defaultFuncMap = template.FuncMap{ "humanDuration": func(t int64) string { return units.HumanDuration(time.Since(time.Unix(t, 0))) + " ago" }, + "humanDurationFromTime": func(t time.Time) string { + return units.HumanDuration(time.Since(t)) + " ago" + }, "humanSize": func(sz int64) string { s := units.HumanSizeWithPrecision(float64(sz), 3) i := strings.LastIndexFunc(s, unicode.IsNumber) |