github.com/oam-dev/kubevela@v1.9.11/references/docgen/testdata/parameter/env.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 if replacing the whole environment settings for the container 5 replace: *false | bool 6 // +usage=Specify the environment variables to merge, if key already existing, override its value 7 env: [string]: string 8 // +usage=Specify which existing environment variables to unset 9 unset: *[] | [...string] 10 } 11 parameter: #PatchParams | close({ 12 // +usage=Specify the environment variables for multiple containers 13 containers: [...#PatchParams] 14 })