github.com/oam-dev/kubevela@v1.9.11/vela-templates/definitions/internal/workflowstep/apply-component.cue (about)

     1  "apply-component": {
     2  	type: "workflow-step"
     3  	annotations: {
     4  		"category": "Application Delivery"
     5  	}
     6  	labels: {
     7  		"scope": "Application"
     8  	}
     9  	description: "Apply a specific component and its corresponding traits in application"
    10  }
    11  template: {
    12  	parameter: {
    13  		// +usage=Specify the component name to apply
    14  		component: string
    15  		// +usage=Specify the cluster
    16  		cluster: *"" | string
    17  		// +usage=Specify the namespace
    18  		namespace: *"" | string
    19  	}
    20  }