github.com/oam-dev/kubevela@v1.9.11/vela-templates/definitions/deprecated/apply-remaining.cue (about)

     1  import (
     2  	"vela/op"
     3  )
     4  
     5  "apply-remaining": {
     6  	type: "workflow-step"
     7  	annotations: {
     8  		"category": "Application Delivery"
     9  	}
    10  	labels: {
    11  		"ui-hidden":  "true"
    12  		"deprecated": "true"
    13  		"scope":      "Application"
    14  	}
    15  	description: "Apply remaining components and traits"
    16  }
    17  template: {
    18  	// apply remaining components and traits
    19  	apply: op.#ApplyRemaining & {
    20  		parameter
    21  	}
    22  
    23  	parameter: {
    24  		// +usage=Declare the name of the component
    25  		exceptions?: [...string]
    26  	}
    27  }