Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for VMConfig (0.08 sec)

  1. pkg/config/validation/validation.go

    		}
    	}
    	return nil
    }
    
    func validateWasmPluginVMConfig(vm *extensions.VmConfig) error {
    	if vm == nil || len(vm.Env) == 0 {
    		return nil
    	}
    
    	keys := sets.New[string]()
    	for _, env := range vm.Env {
    		if env == nil {
    			continue
    		}
    
    		if env.Name == "" {
    			return fmt.Errorf("spec.vmConfig.env invalid")
    		}
    
    		if keys.InsertContains(env.Name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        url(''http://'' +self).getScheme() in ['''', ''http'', ''https'',
                        ''oci'', ''file''])'
                  verificationKey:
                    type: string
                  vmConfig:
                    description: Configuration for a Wasm VM.
                    properties:
                      env:
                        description: Specifies environment variables to be injected to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. manifests/charts/base/crds/crd-all.gen.yaml

                        url(''http://'' +self).getScheme() in ['''', ''http'', ''https'',
                        ''oci'', ''file''])'
                  verificationKey:
                    type: string
                  vmConfig:
                    description: Configuration for a Wasm VM.
                    properties:
                      env:
                        description: Specifies environment variables to be injected to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top