github.com/oam-dev/kubevela@v1.9.11/e2e/addon/mock/testdata/mock-dependence/parameter.cue (about)

     1  // parameter.cue is used to store addon parameters.
     2  //
     3  // You can use these parameters in template.cue or in resources/ by 'parameter.myparam'
     4  //
     5  // For example, you can use parameters to allow the user to customize
     6  // container images, ports, and etc.
     7  parameter: {
     8  	// +usage=Custom parameter description
     9  	myparam: *"myns" | string
    10  	// +usage=Deploy to specified clusters. Leave empty to deploy to all clusters.
    11  	clusters?: [...string]
    12  }