mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-18 03:56:36 +00:00
27 lines
524 B
YAML
27 lines
524 B
YAML
apiVersion: core.oam.dev/v1beta1
|
|
kind: WorkflowStepDefinition
|
|
metadata:
|
|
name: apply
|
|
spec:
|
|
schematic:
|
|
cue:
|
|
template: |
|
|
import ("vela/op")
|
|
parameter: {
|
|
component: string
|
|
}
|
|
|
|
// apply workload to kubernetes cluster
|
|
job: op.#Load & {
|
|
component: parameter.component
|
|
}
|
|
|
|
apply: op.#Apply & {
|
|
value: {
|
|
job.value.workload
|
|
metadata: {
|
|
name: parameter.component
|
|
}
|
|
}
|
|
}
|