mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-23 22:46:53 +00:00
* Feat: support vela def vet the input "dir" and many cue files Signed-off-by: Mcduller <1596582524@qq.com> * Feat: support vela def vet the input "dir" and many cue files Signed-off-by: Mcduller <1596582524@qq.com> --------- Signed-off-by: Mcduller <1596582524@qq.com>
23 lines
486 B
CUE
23 lines
486 B
CUE
// k8s metadata
|
|
test2: {
|
|
type: "trait"
|
|
description: "My test-trait test2"
|
|
attributes: {
|
|
appliesToWorkloads: ["webservice", "worker"]
|
|
podDisruptive: true
|
|
}
|
|
|
|
}
|
|
|
|
// template
|
|
template: {
|
|
patch: {
|
|
spec: {
|
|
replicas: *1 | int
|
|
}
|
|
}
|
|
parameter: {
|
|
// +usage=Specify the number of workloads
|
|
replicas: *1 | int
|
|
}
|
|
} |