mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 10:00:06 +00:00
24 lines
799 B
YAML
24 lines
799 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-component.cue
|
|
apiVersion: core.oam.dev/v1beta1
|
|
kind: WorkflowStepDefinition
|
|
metadata:
|
|
annotations:
|
|
custom.definition.oam.dev/category: Application Delivery
|
|
definition.oam.dev/description: Apply a specific component and its corresponding traits in application
|
|
labels:
|
|
custom.definition.oam.dev/scope: Application
|
|
name: apply-component
|
|
namespace: {{ include "systemDefinitionNamespace" . }}
|
|
spec:
|
|
schematic:
|
|
cue:
|
|
template: |
|
|
parameter: {
|
|
// +usage=Specify the component name to apply
|
|
component: string
|
|
// +usage=Specify the cluster
|
|
cluster: *"" | string
|
|
}
|
|
|