mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-15 05:47:23 +00:00
* Feat: vela cuex render Signed-off-by: Somefive <yd219913@alibaba-inc.com> * feat: CLI command `vela cuex eval <file>` Signed-off-by: Zhenghao Lou <rhzx3519@gmail.com> * responsive writer Signed-off-by: Somefive <yd219913@alibaba-inc.com> --------- Signed-off-by: Somefive <yd219913@alibaba-inc.com> Signed-off-by: Zhenghao Lou <rhzx3519@gmail.com> Co-authored-by: Zhenghao Lou <rhzx3519@gmail.com>
14 lines
216 B
CUE
14 lines
216 B
CUE
import "strings"
|
|
|
|
label: "app"
|
|
// alias for label
|
|
let L = label
|
|
S: {
|
|
name: "Postgres"
|
|
// intermediate value
|
|
let lower = strings.ToLower(name)
|
|
version: "13"
|
|
label: L
|
|
image: "docker.io/\(lower):\(version)"
|
|
}
|