Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wasmPlugins (0.22 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    CustomResourceDefini metadata: annotations: "helm.sh/resource-policy": keep labels: app: istio-pilot chart: istio heritage: Tiller release: istio name: wasmplugins.extensions.istio.io spec: group: extensions.istio.io names: categories: - istio-io - extensions-istio-io kind: WasmPlugin listKind: WasmPluginList plural: wasmplugins singular: wasmplugin scope: Namespaced versions: - additionalPrinterCol: - description: 'CreationTimestamp is a timestamp representing the server time when this object was...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    					Spec: &extensions.WasmPlugin{
    						Phase: extensions.PluginPhase_AUTHZ,
    						Type:  extensions.PluginType_NETWORK,
    					},
    				},
    				{
    					Meta: config.Meta{Name: "wasm-authn", Namespace: "istio-system", GroupVersionKind: gvk.WasmPlugin},
    					Spec: &extensions.WasmPlugin{
    						Phase: extensions.PluginPhase_AUTHN,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    		warning string
    	}{
    		{"empty", &extensions.WasmPlugin{}, "url field needs to be set", ""},
    		{"invalid message", &networking.Server{}, "cannot cast", ""},
    		{
    			"wrong scheme",
    			&extensions.WasmPlugin{
    				Url: "ftp://test.com/test",
    			},
    			"unsupported scheme", "",
    		},
    		{
    			"valid http",
    			&extensions.WasmPlugin{
    				Url: "http://test.com/test",
    			},
    			"", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		}
    	}
    	return nil
    }
    
    // ValidateWasmPlugin validates a WasmPlugin.
    var ValidateWasmPlugin = RegisterValidateFunc("ValidateWasmPlugin",
    	func(cfg config.Config) (Warning, error) {
    		spec, ok := cfg.Spec.(*extensions.WasmPlugin)
    		if !ok {
    			return nil, fmt.Errorf("cannot cast to wasmplugin")
    		}
    		// figure out how to add check for targetRef and workload selector is not nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top