mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 10:00:06 +00:00
Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>
31 lines
900 B
YAML
31 lines
900 B
YAML
# Code generated by KubeVela templates. DO NOT EDIT. Please edit the original cue file.
|
|
# Definition source cue file: vela-templates/definitions/internal/apply-remaining.cue
|
|
apiVersion: core.oam.dev/v1beta1
|
|
kind: WorkflowStepDefinition
|
|
metadata:
|
|
annotations:
|
|
definition.oam.dev/description: Apply remaining components and traits
|
|
labels:
|
|
custom.definition.oam.dev/deprecated: "true"
|
|
custom.definition.oam.dev/scope: Application
|
|
custom.definition.oam.dev/ui-hidden: "true"
|
|
name: apply-remaining
|
|
namespace: {{ include "systemDefinitionNamespace" . }}
|
|
spec:
|
|
schematic:
|
|
cue:
|
|
template: |
|
|
import (
|
|
"vela/op"
|
|
)
|
|
|
|
// apply remaining components and traits
|
|
apply: op.#ApplyRemaining & {
|
|
parameter
|
|
}
|
|
parameter: {
|
|
// +usage=Declare the name of the component
|
|
exceptions?: [...string]
|
|
}
|
|
|