github.com/oam-dev/kubevela@v1.9.11/references/docgen/testdata/parameter/command.cue (about)

     1  #PatchParams: {
     2  	// +usage=Specify the name of the target container, if not set, use the component name
     3  	containerName: *"" | string
     4  	// +usage=Specify the command to use in the target container, if not set, it will not be changed
     5  	command: *null | [...string]
     6  	// +usage=Specify the args to use in the target container, if set, it will override existing args
     7  	args: *null | [...string]
     8  	// +usage=Specify the args to add in the target container, existing args will be kept, cannot be used with args
     9  	addArgs: *null | [...string]
    10  	// +usage=Specify the existing args to delete in the target container, cannot be used with args
    11  	delArgs: *null | [...string]
    12  }
    13  
    14  parameter: #PatchParams | close({
    15  	// +usage=Specify the commands for multiple containers
    16  	containers: [...#PatchParams]
    17  })