Files
Mcduller eba40ab20d Feat: support vela def vet the input "dir" and many cue files (#5806)
* 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>
2023-04-07 14:12:37 +08:00

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
}
}