mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
* Feat: dispatch manifests in concurrent Signed-off-by: yangsoon <songyang.song@alibaba-inc.com> * Fix: merge workflow pkg convert to pkg util Signed-off-by: yangsoon <songyang.song@alibaba-inc.com> Co-authored-by: yangsoon <songyang.song@alibaba-inc.com>
55 lines
744 B
CUE
55 lines
744 B
CUE
#Apply: {
|
|
#do: "apply"
|
|
#provider: "kube"
|
|
cluster: *"" | string
|
|
value: {...}
|
|
...
|
|
}
|
|
|
|
#ApplyInParallel: {
|
|
#do: "apply-in-parallel"
|
|
#provider: "kube"
|
|
cluster: *"" | string
|
|
value: [...{...}]
|
|
...
|
|
}
|
|
|
|
#Read: {
|
|
#do: "read"
|
|
#provider: "kube"
|
|
cluster: *"" | string
|
|
value?: {...}
|
|
...
|
|
}
|
|
|
|
#List: {
|
|
#do: "list"
|
|
#provider: "kube"
|
|
cluster: *"" | string
|
|
resource: {
|
|
apiVersion: string
|
|
kind: string
|
|
}
|
|
filter?: {
|
|
namespace?: *"" | string
|
|
matchingLabels?: {...}
|
|
}
|
|
list?: {...}
|
|
...
|
|
}
|
|
|
|
#Delete: {
|
|
#do: "delete"
|
|
#provider: "kube"
|
|
cluster: *"" | string
|
|
value: {
|
|
apiVersion: string
|
|
kind: string
|
|
metadata: {
|
|
name: string
|
|
namespace: *"default" | string
|
|
}
|
|
}
|
|
...
|
|
}
|