github.com/oam-dev/kubevela@v1.9.11/pkg/utils/common/testdata/workload1.cue (about)

     1  parameter: {
     2  	// +usage=Which image would you like to use for your service
     3  	// +short=i
     4  	image: string
     5  
     6  	// +usage=Commands to run in the container
     7  	cmd?: [...string]
     8  
     9  	cpu?: string
    10  
    11  	http: [string]: int
    12  }
    13  
    14  #routeName: "\(context.appName)-\(context.name)"
    15  
    16  context: {}