Sign in
cue
/
cue
/
8a0ac3e80b00fc58606f47951a852744bf2d68c9
/
.
/
doc
/
tutorial
/
kubernetes
/
manual
/
services
/
create_tool.cue
blob: 011bdc4e64384cf23562018b40c84697993446f6 [
file
] [
log
] [
blame
]
package
kube
import
"encoding/yaml"
command
:
create
:
{
task
:
kube
:
{
kind
:
"exec"
cmd
:
"kubectl create --dry-run -f -"
stdin
:
yaml
.
MarshalStream
(
objects
)
stdout
:
string
}
task
:
display
:
{
kind
:
"print"
text
:
task
.
kube
.
stdout
}
}