Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,048 for v1alpha3 (0.27 sec)

  1. pkg/test/datasets/validation/dataset/networking-v1alpha3-EnvoyFilter.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: simple-envoy-filter
    spec:
      workloadSelector:
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 149 bytes
    - Viewed (0)
  2. pkg/test/datasets/validation/dataset/networking-v1alpha3-DestinationRule.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: valid-destination-rule
    spec:
      host: c
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 229 bytes
    - Viewed (0)
  3. pkg/test/datasets/validation/dataset/networking-v1alpha3-VirtualService.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: valid-virtual-service
    spec:
      hosts:
        - c
      http:
        - route:
          - destination:
              host: c
              subset: v1
            weight: 75
          - destination:
              host: c
              subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 304 bytes
    - Viewed (0)
  4. pkg/test/datasets/validation/dataset/networking-v1alpha3-WorkloadEntry.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: WorkloadEntry
    metadata:
      name: valid-workload-entry
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 127 bytes
    - Viewed (0)
  5. pkg/test/datasets/validation/dataset/networking-v1alpha3-Sidecar.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: valid-sidecar-config
    spec:
      egress:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 135 bytes
    - Viewed (0)
  6. pkg/test/datasets/validation/dataset/networking-v1alpha3-WorkloadGroup.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: WorkloadGroup
    metadata:
      name: reviews
    spec:
      metadata:
        labels:
          app.kubernetes.io/name: reviews
          app.kubernetes.io/version: "1.3.4"
      template:
        ports:
          grpc: 3550
          http: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 281 bytes
    - Viewed (0)
  7. pkg/test/datasets/validation/dataset/networking-v1alpha3-Gateway.yaml

    # Routes TCP traffic through the ingressgateway Gateway to service A.
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: valid-gateway
    spec:
      selector:
        # DO NOT CHANGE THESE LABELS
        # The ingressgateway is defined in install/kubernetes/helm/istio/values.yaml
        # with these labels
        istio: ingressgateway
      servers:
      - port:
          number: 31400
          protocol: TCP
          name: tcp
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 466 bytes
    - Viewed (0)
  8. pkg/test/datasets/validation/dataset/networking-v1alpha3-ServiceEntry.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: valid-service-entry
    spec:
      hosts:
      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 512 bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tls_test.go

    // limitations under the License.
    
    package core
    
    import (
    	"testing"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestMatchTLS(t *testing.T) {
    	type args struct {
    		match       *v1alpha3.TLSMatchAttributes
    		proxyLabels labels.Instance
    		gateways    sets.String
    		port        int
    		namespace   string
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: testing-gateway-01-test-01
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - testing-01.com
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
Back to top