Files
kubevela/pkg/cue/testdata/workloads/test-param.cue
天元 07351d9dd7 update vela init UI
Signed-off-by: 天元 <jianbo.sjb@alibaba-inc.com>
2020-11-11 16:16:01 +08:00

20 lines
336 B
CUE

Template: {
}
parameter: {
name: string
// +usage=Which image would you like to use for your service
// +short=i
image: string
// +usage=Which port do you want customer traffic sent to
// +short=p
port: *8080 | int
env: [...{
name: string
value: string
}]
enable: *false | bool
fval: *64.3 | number
nval: number
}