mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
20 lines
336 B
CUE
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
|
|
}
|