mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
* Feat: support step logs in vela logs Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * resolve comments Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>
37 lines
544 B
CUE
37 lines
544 B
CUE
#PatchK8sObject: {
|
|
#do: "patch-k8s-object"
|
|
#provider: "util"
|
|
value: {...}
|
|
patch: {...}
|
|
result: {...}
|
|
...
|
|
}
|
|
|
|
#String: {
|
|
#do: "string"
|
|
#provider: "util"
|
|
|
|
bt: bytes
|
|
str?: string
|
|
...
|
|
}
|
|
|
|
#Log: {
|
|
#do: "log"
|
|
#provider: "util"
|
|
|
|
data?: {...} | string
|
|
level: *3 | int
|
|
// note that if you set source in multiple op.#Log, only the latest one will work
|
|
source?: close({
|
|
url: string
|
|
}) | close({
|
|
resources?: [...{
|
|
name?: string
|
|
cluster?: string
|
|
namespace?: string
|
|
labelSelector?: {...}
|
|
}]
|
|
})
|
|
}
|