Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for wasmPlugins (0.16 sec)

  1. pilot/pkg/model/push_context_test.go

    				extensions.PluginPhase_AUTHN: {
    					convertToWasmPluginWrapper(wasmPlugins["authn-med-prio-all"]),
    					convertToWasmPluginWrapper(wasmPlugins["authn-low-prio-all-network"]),
    					convertToWasmPluginWrapper(wasmPlugins["authn-low-prio-all"]),
    					convertToWasmPluginWrapper(wasmPlugins["global-authn-low-prio-ingress"]),
    				},
    			},
    		},
    		{
    			name: "testns-2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.WasmPlugin:
    		oldRes := &apiistioioapiextensionsv1alpha1.WasmPlugin{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*istioioapiextensionsv1alpha1.WasmPlugin)),
    		}
    		modRes := &apiistioioapiextensionsv1alpha1.WasmPlugin{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*istioioapiextensionsv1alpha1.WasmPlugin)),
    		}
    		patchBytes, err := genPatchBytes(oldRes, modRes, typ)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    }
    
    // pre computes WasmPlugins per namespace
    func (ps *PushContext) initWasmPlugins(env *Environment) {
    	wasmplugins := env.List(gvk.WasmPlugin, NamespaceAll)
    
    	sortConfigByCreationTime(wasmplugins)
    	ps.wasmPluginsByNamespace = map[string][]*WasmPluginWrapper{}
    	for _, plugin := range wasmplugins {
    		if pluginWrapper := convertToWasmPluginWrapper(plugin); pluginWrapper != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    		Spec: &extensions.WasmPlugin{
    			Phase: extensions.PluginPhase_AUTHZ,
    			Type:  extensions.PluginType_NETWORK,
    		},
    	},
    	{
    		Meta: config.Meta{Name: "wasm-network-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: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    		}},
    		{"WasmPlugin in same ns as workload", []string{"*/*"}, map[ConfigKey]bool{
    			{kind.WasmPlugin, "wasm", "default"}: true,
    		}},
    		{"WasmPlugin in different ns from workload", []string{"*/*"}, map[ConfigKey]bool{
    			{kind.WasmPlugin, "wasm", "ns1"}: false,
    		}},
    		{"WasmPlugin in the root namespace", []string{"*/*"}, map[ConfigKey]bool{
    			{kind.WasmPlugin, "wasm", constants.IstioSystemNamespace}: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top