From 7def91910c07ee3782b2106f76877d57d646f9b4 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Sun, 29 Mar 2020 14:46:35 -0500 Subject: podmanv2 pod ps add the ability to list pods in podmanv2 Signed-off-by: Brent Baude --- cmd/podmanV2/report/templates.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cmd/podmanV2/report') 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) -- cgit v1.2.3-54-g00ecf