Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for wasmPlugins (0.24 sec)

  1. pkg/kube/kclient/client_test.go

    		// Only CRD is ready to go by the time we start informers
    		clienttest.MakeCRD(t, c, gvr.WasmPlugin)
    		c.RunAndWait(stop)
    
    		// Now that CRD is synced, we create the client
    		wasm := kclient.NewDelayedInformer[controllers.Object](c, gvr.WasmPlugin, kubetypes.StandardInformer, kubetypes.Filter{})
    		wt := clienttest.NewWriter[*istioclient.WasmPlugin](t, c)
    		tracker := assert.NewTracker[string](t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. pkg/config/schema/kind/resources.gen.go

    		return "Telemetry"
    	case UDPRoute:
    		return "UDPRoute"
    	case ValidatingWebhookConfiguration:
    		return "ValidatingWebhookConfiguration"
    	case VirtualService:
    		return "VirtualService"
    	case WasmPlugin:
    		return "WasmPlugin"
    	case WorkloadEntry:
    		return "WorkloadEntry"
    	case WorkloadGroup:
    		return "WorkloadGroup"
    	default:
    		return "Unknown"
    	}
    }
    
    func MustFromGVK(g config.GroupVersionKind) Kind {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. releasenotes/notes/wasm-traffic-selector.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: [39345]
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 16 18:51:16 UTC 2022
    - 269 bytes
    - Viewed (0)
  4. pkg/config/schema/kubetypes/resources.gen.go

    		return gvk.VirtualService, true
    	case *apiistioioapinetworkingv1alpha3.VirtualService:
    		return gvk.VirtualService, true
    	case *istioioapiextensionsv1alpha1.WasmPlugin:
    		return gvk.WasmPlugin, true
    	case *apiistioioapiextensionsv1alpha1.WasmPlugin:
    		return gvk.WasmPlugin, true
    	case *istioioapinetworkingv1alpha3.WorkloadEntry:
    		return gvk.WorkloadEntry, true
    	case *apiistioioapinetworkingv1alpha3.WorkloadEntry:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/wasmplugin_test.go

    // after applying the Wasm filter.
    // At this moment, there is no "fail_open" option in WasmPlugin API. So, we test it using
    // EnvoyFilter. When WasmPlugin has a "fail_open" option in the API plane, we need to change
    // this test to use the WasmPlugin API
    func TestBadWasmWithFailOpen(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. 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)
  7. tests/integration/telemetry/api/testdata/attributegen.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: istio.attributegen
    spec:
      phase: STATS
      selector:
        matchLabels:
          app: b
      url: {{ .AttributeGenURL }}
      imagePullSecret: reg-cred
      pluginConfig:
        attributes:
        - output_attribute: istio_responseClass
          match:
          - value: 2xx
            condition: response.code >= 200 && response.code <= 299
        - output_attribute: istio_operationId
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 639 bytes
    - Viewed (0)
  8. pilot/pkg/model/typed_xds_cache_test.go

    		key:            "key2",
    		dependentTypes: []kind.Kind{kind.Service, kind.EnvoyFilter, kind.WasmPlugin},
    		dependentConfigs: []ConfigHash{
    			ConfigKey{Kind: kind.Service, Name: "name", Namespace: "namespace"}.HashCode(),
    			ConfigKey{Kind: kind.EnvoyFilter, Name: "name", Namespace: "namespace"}.HashCode(),
    			ConfigKey{Kind: kind.WasmPlugin, Name: "name", Namespace: "namespace"}.HashCode(),
    		},
    	}
    
    	c := newTypedXdsCache[uint64]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/k8sgateway-selector.yaml

    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
    ---
    # only selector is set, should be ineffective
    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: wasmplugin-ineffective
      namespace: default
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
      url: google.com
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 01:19:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. releasenotes/notes/wasm-secret.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 01 19:27:52 UTC 2022
    - 186 bytes
    - Viewed (0)
Back to top