github.com/oam-dev/kubevela@v1.9.11/charts/vela-core/templates/defwithtemplate/apply-remaining.yaml (about)

     1  # Code generated by KubeVela templates. DO NOT EDIT. Please edit the original cue file.
     2  # Definition source cue file: vela-templates/definitions/deprecated/apply-remaining.cue
     3  apiVersion: core.oam.dev/v1beta1
     4  kind: WorkflowStepDefinition
     5  metadata:
     6    annotations:
     7      custom.definition.oam.dev/category: Application Delivery
     8      definition.oam.dev/description: Apply remaining components and traits
     9    labels:
    10      custom.definition.oam.dev/deprecated: "true"
    11      custom.definition.oam.dev/scope: Application
    12      custom.definition.oam.dev/ui-hidden: "true"
    13    name: apply-remaining
    14    namespace: {{ include "systemDefinitionNamespace" . }}
    15  spec:
    16    schematic:
    17      cue:
    18        template: |
    19          import (
    20          	"vela/op"
    21          )
    22  
    23          // apply remaining components and traits
    24          apply: op.#ApplyRemaining & {
    25          	parameter
    26          }
    27  
    28          parameter: {
    29          	// +usage=Declare the name of the component
    30          	exceptions?: [...string]
    31          }
    32