mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 18:10:21 +00:00
* feat: add new providers and fix definitions Signed-off-by: FogDong <fog@bentoml.com> * fix: fix definitions and tests Signed-off-by: FogDong <fog@bentoml.com> * fix: fix lint and helm Signed-off-by: FogDong <fog@bentoml.com> * fix: fix definitions Signed-off-by: FogDong <fog@bentoml.com> * fix: add multicluster Signed-off-by: FogDong <fog@bentoml.com> * fix: fix e2e Signed-off-by: FogDong <fog@bentoml.com> * fix: fix dynamic client for cli Signed-off-by: FogDong <fog@bentoml.com> * fix: fix api gen Signed-off-by: FogDong <fog@bentoml.com> * fix: fix lint Signed-off-by: FogDong <fog@bentoml.com> --------- Signed-off-by: FogDong <fog@bentoml.com>
25 lines
495 B
CUE
25 lines
495 B
CUE
import (
|
|
"vela/kube"
|
|
)
|
|
|
|
"apply-object": {
|
|
type: "workflow-step"
|
|
annotations: {
|
|
"category": "Resource Management"
|
|
}
|
|
labels: {}
|
|
description: "Apply raw kubernetes objects for your workflow steps"
|
|
}
|
|
template: {
|
|
apply: kube.#Apply & {
|
|
$params: parameter
|
|
}
|
|
|
|
parameter: {
|
|
// +usage=Specify Kubernetes native resource object to be applied
|
|
value: {...}
|
|
// +usage=The cluster you want to apply the resource to, default is the current control plane cluster
|
|
cluster: *"" | string
|
|
}
|
|
}
|