Sign in
cue
/
cue
/
8f9ef319f9f15ec972026c24fa58ee1b14ddecd3
/
.
/
doc
/
tutorial
/
kubernetes
/
manual
/
services
/
ls_tool.cue
blob: d82e2af30321a4e09f50894d1d5483447921a11d [
file
] [
log
] [
blame
]
package
kube
import
"strings"
command
:
ls
:
{
task
:
print
:
{
kind
:
"print"
Lines
=
[
"\(x.kind) \t\(x.metadata.labels.component) \t\(x.metadata.name)"
for
x
in
objects
]
text
:
strings
.
Join
(
Lines
,
"\n"
)
}
}