Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for VMConfig (0.1 sec)

  1. pkg/wasm/convert_test.go

    			Vm: &v3.PluginConfig_VmConfig{
    				VmConfig: &v3.VmConfig{
    					Code: &core.AsyncDataSource{Specifier: &core.AsyncDataSource_Remote{
    						Remote: &core.RemoteDataSource{},
    					}},
    				},
    			},
    		},
    	}),
    	"remote-load-success": buildTypedStructExtensionConfig("remote-load-success", &wasm.Wasm{
    		Config: &v3.PluginConfig{
    			Vm: &v3.PluginConfig_VmConfig{
    				VmConfig: &v3.VmConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/extensions_test.go

    	cases := []struct {
    		desc     string
    		vm       *extensions.VmConfig
    		policy   extensions.PullPolicy
    		expected *wasmextensions.PluginConfig_VmConfig
    	}{
    		{
    			desc:   "Build VMConfig without a base VMConfig",
    			vm:     nil,
    			policy: extensions.PullPolicy_UNSPECIFIED_POLICY,
    			expected: &wasmextensions.PluginConfig_VmConfig{
    				VmConfig: &wasmextensions.VmConfig{
    					Runtime: defaultRuntime,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/extension/wasmplugin_test.go

    		Config: &wasmextension.PluginConfig{
    			Name:          "istio-system.someAuthNFilter",
    			Configuration: &anypb.Any{},
    			Vm: &wasmextension.PluginConfig_VmConfig{
    				VmConfig: &wasmextension.VmConfig{
    					Runtime: "envoy.wasm.runtime.v8",
    					Code: &core.AsyncDataSource{
    						Specifier: &core.AsyncDataSource_Remote{
    							Remote: &core.RemoteDataSource{
    								HttpUri: &core.HttpUri{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/wasm.go

    )
    
    // ConstructVMConfig constructs a VM config.
    func ConstructVMConfig(name string) *wasm.PluginConfig_VmConfig {
    	return &wasm.PluginConfig_VmConfig{
    		VmConfig: &wasm.VmConfig{
    			Runtime: "envoy.wasm.runtime.null",
    			Code: &core.AsyncDataSource{Specifier: &core.AsyncDataSource_Local{
    				Local: &core.DataSource{
    					Specifier: &core.DataSource_InlineString{
    						InlineString: name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/extensions.go

    	cfg := &wasmextensions.PluginConfig_VmConfig{
    		VmConfig: &wasmextensions.VmConfig{
    			Runtime: defaultRuntime,
    			Code:    datasource,
    			EnvironmentVariables: &wasmextensions.EnvironmentVariables{
    				KeyValues: map[string]string{},
    			},
    		},
    	}
    
    	if wasmPlugin.ImagePullSecret != "" {
    		cfg.VmConfig.EnvironmentVariables.KeyValues[WasmSecretEnv] = wasmPlugin.ImagePullSecret
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

        name: default.httpbin-rate-limiting
        typedConfig:
          '@type': type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm
          config:
            configuration: {}
            name: default.httpbin-rate-limiting
            vmConfig:
              code:
                local:
                  filename: /var/lib/istio/data/fe482be5ac123d3d387b0c68b9ed7f8ed65824e7d0bbc88a9a9a71dd8391d96c/d8ef3957b4cf09da9ed25e88bc75ac397ea875d88c5cbed356872f936a86d928.wasm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.json

                        "@type": "type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm",
                        "config": {
                            "name": "default.httpbin-rate-limiting",
                            "vmConfig": {
                                "runtime": "envoy.wasm.runtime.v8",
                                "code": {
                                    "local": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. istioctl/pkg/workload/workload_test.go

    // Each subdirectory contains two input files: workloadgroup.yaml and meshconfig.yaml that are used
    // to generate golden outputs from the VM command.
    func TestWorkloadEntryConfigure(t *testing.T) {
    	noClusterID := "failed to automatically determine the --clusterID"
    	files, err := os.ReadDir("testdata/vmconfig")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_delta_test.go

    	}
    	assert.Equal(t, gotResp.Resources[0].Name, "extension-config")
    	wasm := &wasm.Wasm{
    		Config: &wasmv3.PluginConfig{
    			Vm: &wasmv3.PluginConfig_VmConfig{
    				VmConfig: &wasmv3.VmConfig{
    					Code: &core.AsyncDataSource{Specifier: &core.AsyncDataSource_Local{
    						Local: &core.DataSource{
    							Specifier: &core.DataSource_Filename{
    								Filename: "test",
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy_test.go

    		t.Fatalf("wasm config conversion output %v failed to unmarshal", gotResp.Resources[0])
    	}
    	wasm := &wasm.Wasm{
    		Config: &wasmv3.PluginConfig{
    			Vm: &wasmv3.PluginConfig_VmConfig{
    				VmConfig: &wasmv3.VmConfig{
    					Code: &core.AsyncDataSource{Specifier: &core.AsyncDataSource_Local{
    						Local: &core.DataSource{
    							Specifier: &core.DataSource_Filename{
    								Filename: "test",
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top