mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-20 08:13:23 +00:00
25 lines
586 B
YAML
25 lines
586 B
YAML
apiVersion: core.oam.dev/v1beta1
|
|
kind: WorkflowStepDefinition
|
|
metadata:
|
|
name: inline-deploy
|
|
spec:
|
|
schematic:
|
|
cue:
|
|
template: |
|
|
import "vela/op"
|
|
deploy: op.#Deploy & {
|
|
policies: []
|
|
parallelism: 5
|
|
ignoreTerraformComponent: true
|
|
inlinePolicies: [{
|
|
type: "override"
|
|
name: "set-replica"
|
|
properties: components: [{
|
|
traits: [{
|
|
type: "scaler"
|
|
properties: replicas: 0
|
|
}]
|
|
}]
|
|
}]
|
|
}
|
|
parameter: {} |