Built-in Workflow Operations
Create or update resource in Kubernetes cluster.
- value: the resource structure to be created or updated. And after successful execution,
value
will be updated with resource status. - patch: the content support
Strategic Merge Patch
,let you can define the strategy of list merge through comments.
Usage
import "vela/op"
stepName: op.#Apply & {
value: {
kind: "Deployment"
apiVersion: "apps/v1"
metadata: name: "test-app"
spec: {
replicas: 2
...
}
}
spec: template: spec: {
//patchKey=name
containers: [{name: "sidecar"}]
}
}
}
ConditionalWait
Step will be blocked until the condition is met.
Action Parameter
- continue: Step will be blocked until the value becomes
true
.
#ConditionalWait: {
continue: bool
}
Usage
import "vela/op"
apply: op.#Apply
wait: op.#ConditionalWait: {
continue: apply.value.status.phase=="running"
}
Load
Get all components in application.
Action Parameter
#Load: {}
Usage
// You can use `load.value.[componentName] after this action.
load: op.#Load & {}
Get resource in Kubernetes cluster.
Action Parameter
- value: the resource metadata to be get. And after successful execution,
value
will be updated with resource definition in cluster. - err: if an error occurs, the
err
will contain the error message.
// You can use configmap.value.data after this action.
configmap: op.#Read & {
value: {
kind: "ConfigMap"
apiVersion: "v1"
metadata: {
name: "configmap-name"
namespace: "configmap-ns"
}
}
}
ApplyApplication
Create or update resources corresponding to the application in Kubernetes cluster.
Action Parameter
No parameters.
#ApplyApplication: {}
Usage
apply: op.#ApplyApplication & {}
ApplyComponent
Create or update resources corresponding to the component in Kubernetes cluster. Note that need to use Load
first to apply the resources.
Action Parameter
- value: the load value of the resource.
- patch: the value to patch resource.
#ApplyComponent: {
value: {...}
patch: {...}
}
Usage
load: op.#Load & {}
value: load.value[parameter.component]
}
Action Parameter
- exceptions: indicates the name of the exceptional component.
Usage
apply: op.#ApplyRemaining & {
exceptions: ["applied-component-name"]
}
Slack
Send messages to Slack.
- url: The webhook address of Slack.
- message: The messages that you want to send, please refer to 。
url: string
message: {...}
}
Usage
apply: op.#Slack & {
url: webhook url
message:
text: Hello KubeVela
}
DingTalk
Send messages to DingTalk.
Action Parameter
- url: The webhook address of DingTalk.
- message: The messages that you want to send, please refer to 。
#DingTalk: {
url: string
message: {...}
}
Usage
apply: op.#DingTalk & {
url: webhook url
message:
msgtype: text
text:
context: Hello KubeVela
}
Used to encapsulate a set of operations.
- In steps, you need to specify the execution order by tag.
Usage
DoVar
used to save or read user-defined data in the context of workflow
Action Parameter
- method: The value is
get
orput
, which indicates whether the action reads or saves data from workflow - path: Path to save or read data
- value: Data content (in the format of cue). When the method is
get
, it indicates the read data, otherwise it indicates the data to be saved
Usage
put: op.ws.#DoVar & {
method: "Put"
path: "foo.score"
value: 100
}
// The user can get the data saved above through get.value (100)
get: op.ws.#DoVar & {
method: "Get"
path: "foo.score"