blob: 0170e04b0c345f599a7d3e6582741ac73beaa7a6 [file] [log] [blame]
package kube
import "strings"
command: ls: {
task: print: {
kind: "print"
let Lines = [
for x in objects {
"\(x.kind) \t\(x.metadata.labels.component) \t\(x.metadata.name)"
}
]
text: strings.Join(Lines, "\n")
}
}