summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-06-01 09:43:45 -0500
committerBrent Baude <bbaude@redhat.com>2020-06-01 11:54:15 -0500
commit990514ea92b9b50dfb95dc0e505e11a21578a649 (patch)
tree8ba9db4d111bd7379ac09780533d304154b69658 /cmd
parentf559cec6c0d1694cca9530004aaba3c138f621e3 (diff)
downloadpodman-990514ea92b9b50dfb95dc0e505e11a21578a649.tar.gz
podman-990514ea92b9b50dfb95dc0e505e11a21578a649.tar.bz2
podman-990514ea92b9b50dfb95dc0e505e11a21578a649.zip
Add support for format {{.Label}}
the pod ps man page says .Label is valid go template format. i dont think the function was actually ever implemented. Fixes #6448 Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/pods/ps.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/podman/pods/ps.go b/cmd/podman/pods/ps.go
index 5703bd172..1385ff270 100644
--- a/cmd/podman/pods/ps.go
+++ b/cmd/podman/pods/ps.go
@@ -178,6 +178,11 @@ func (l ListPodReporter) Created() string {
return units.HumanDuration(time.Since(l.ListPodsReport.Created)) + " ago"
}
+// Labels returns a map of the pod's labels
+func (l ListPodReporter) Labels() map[string]string {
+ return l.ListPodsReport.Labels
+}
+
// NumberofContainers returns an int representation for
// the number of containers belonging to the pod
func (l ListPodReporter) NumberOfContainers() int {