mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-23 22:46:53 +00:00
* Refactor: the addon dependency installation logic is accurate to the cluster Signed-off-by: zhaohuihui <zhaohuihui_yewu@cmss.chinamobile.com> * Fix: optimize the code based on the review Signed-off-by: zhaohuihui <zhaohuihui_yewu@cmss.chinamobile.com> * Feat: add unit test for func checkDependencyNeedInstall Signed-off-by: zhaohuihui <zhaohuihui_yewu@cmss.chinamobile.com> --------- Signed-off-by: zhaohuihui <zhaohuihui_yewu@cmss.chinamobile.com>
11 lines
339 B
CUE
11 lines
339 B
CUE
// parameter.cue is used to store addon parameters.
|
|
//
|
|
// You can use these parameters in template.cue or in resources/ by 'parameter.myparam'
|
|
//
|
|
// For example, you can use parameters to allow the user to customize
|
|
// container images, ports, and etc.
|
|
parameter: {
|
|
// +usage=Custom parameter description
|
|
myparam: *"mynsrely" | string
|
|
}
|