github.com/oam-dev/kubevela@v1.9.11/vela-templates/definitions/deprecated/apply-application.cue (about) 1 import ( 2 "vela/op" 3 ) 4 5 "apply-application": { 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 application for your workflow steps, it has no arguments, should be used for custom steps before or after application applied." 16 } 17 template: { 18 // apply application 19 output: op.#ApplyApplication & {} 20 }