Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for WasmPluginVersion (0.21 sec)

  1. tests/integration/telemetry/api/testdata/wasm-filter.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: {{ .WasmPluginName }}
      {{- if .WasmPluginVersion }}
      annotations:
        wasmPluginVersion: {{ .WasmPluginVersion }}
      {{- end }}
    spec:
      phase: STATS
      selector:
        matchLabels:
          app: {{ .TargetAppName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 475 bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/testdata/gateway-wasm-filter.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: {{ .WasmPluginName }}
      {{- if .WasmPluginVersion }}
      annotations:
        wasmPluginVersion: {{ .WasmPluginVersion }}
      {{- end }}
    spec:
      phase: STATS
      targetRef:
        kind: Gateway
        group: gateway.networking.k8s.io
        name: {{ .TargetGatewayName}}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:48:31 UTC 2023
    - 516 bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/wasm-filter.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: {{ .WasmPluginName }}
      {{- if .WasmPluginVersion }}
      annotations:
        wasmPluginVersion: {{ .WasmPluginVersion }}
      {{- end }}
    spec:
      phase: STATS
      targetRef:
        kind: {{ .TargetKind }}
        group: {{ .TargetGroup }}
        name: {{ .TargetName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
  4. tests/integration/ambient/wasm_test.go

    	kind, group, name := getTargetRefValues(targetType, targetName)
    
    	args := map[string]any{
    		"WasmPluginName":    pluginName,
    		"TestWasmModuleURL": wasmModuleURL,
    		"WasmPluginVersion": pluginVersion,
    		"TargetKind":        kind,
    		"TargetGroup":       group,
    		"TargetName":        name,
    	}
    
    	if len(imagePullPolicy) != 0 {
    		args["ImagePullPolicy"] = imagePullPolicy
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/wasmplugin_test.go

    	args := map[string]any{
    		"WasmPluginName":    pluginName,
    		"TestWasmModuleURL": wasmModuleURL,
    		"WasmPluginVersion": pluginVersion,
    		"TargetAppName":     GetTarget().(echo.Instances).NamespacedName().Name,
    		"TargetGatewayName": GetTarget().(echo.Instances).ServiceName() + "-gateway",
    	}
    
    	if len(imagePullPolicy) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top