mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-07 01:46:54 +00:00
* Fix: upgrade the workflow to support the provider about the config Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: change the yaml Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: retry CI Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: change the definitions Signed-off-by: barnettZQG <barnett.zqg@gmail.com> Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
41 lines
481 B
CUE
41 lines
481 B
CUE
#Create: {
|
|
#do: "create"
|
|
#provider: "config"
|
|
|
|
name: string
|
|
namespace: string
|
|
template?: string
|
|
config: {
|
|
...
|
|
}
|
|
}
|
|
|
|
#Delete: {
|
|
#do: "delete"
|
|
#provider: "config"
|
|
|
|
name: string
|
|
namespace: string
|
|
}
|
|
|
|
#Read: {
|
|
#do: "read"
|
|
#provider: "config"
|
|
|
|
name: string
|
|
namespace: string
|
|
|
|
config: {...}
|
|
}
|
|
|
|
#List: {
|
|
#do: "list"
|
|
#provider: "config"
|
|
|
|
// Must query with the template
|
|
template: string
|
|
namespace: string
|
|
|
|
configs: [...{...}]
|
|
}
|