Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 524 for subset16 (0.18 sec)

  1. samples/bookinfo/networking/virtual-service-ratings-mysql-vm.yaml

    spec:
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v3
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - route:
        - destination:
            host: ratings
            subset: v2-mysql-vm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 405 bytes
    - Viewed (0)
  2. samples/bookinfo/networking/virtual-service-reviews-jason-v2-v3.yaml

    spec:
      hosts:
      - reviews
      http:
      - match:
        - headers:
            end-user:
              exact: jason
        route:
        - destination:
            host: reviews
            subset: v2
      - route:
        - destination:
            host: reviews
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 17 21:01:05 UTC 2018
    - 332 bytes
    - Viewed (0)
  3. samples/bookinfo/networking/virtual-service-ratings-test-delay.yaml

        fault:
          delay:
            percentage:
              value: 100.0
            fixedDelay: 7s
        route:
        - destination:
            host: ratings
            subset: v1
      - route:
        - destination:
            host: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 22 12:35:03 UTC 2018
    - 422 bytes
    - Viewed (0)
  4. samples/bookinfo/networking/virtual-service-ratings-db.yaml

    spec:
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v3
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - route:
        - destination:
            host: ratings
            subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 396 bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    	}
    	subset1 := func(eps *discovery.EndpointSlice) {
    		eps.AddressType = discovery.AddressTypeIPv4
    		eps.Endpoints = []discovery.Endpoint{{
    			Addresses: []string{"10.1.1.1"},
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    			Name:     ptr.To("p11"),
    			Port:     ptr.To[int32](11),
    			Protocol: ptr.To(v1.ProtocolUDP),
    		}}
    	}
    	subset2 := func(eps *discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. istioctl/pkg/validate/validate_test.go

    metadata:
      name: valid-virtual-service
    spec:
      hosts:
        - c
      http:
        - route:
          - destination:
              host: c
              subset: v1
            weight: 75
          - destination:
              host: c
              subset: v2
            weight: 25`
    	validVirtualServiceJSON = `{
    "apiVersion": "networking.istio.io/v1alpha3",
    "kind": "VirtualService",
    "metadata": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/tunneling/sidecar/virtual-service.tmpl.yaml

            subset: external-svc-tcp
            port:
              number: {{ .forwardProxyPort }}
      tls:
      - match:
        - sniHosts:
          - external.{{ .externalNamespace }}.svc.cluster.local
          port: {{ .externalSvcTlsPort }}
        route:
        - destination:
            host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
            subset: external-svc-tls
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 15 23:31:52 UTC 2022
    - 824 bytes
    - Viewed (0)
  8. pkg/config/labels/instance.go

    // could have labels gitCommit=aeiou234, region=us-east, while v2 instances could
    // have labels name=kittyCat,region=us-east.
    type Instance map[string]string
    
    // SubsetOf is true if the label has same values for the keys
    func (i Instance) SubsetOf(that Instance) bool {
    	if len(i) == 0 {
    		return true
    	}
    
    	if len(that) == 0 || len(that) < len(i) {
    		return false
    	}
    
    	for k, v1 := range i {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. pkg/maps/maps.go

    	maps.Copy(dst, override)
    	return dst
    }
    
    // Contains checks if all key-value pairs in 'subset' are present in 'superset'.
    // It returns true only if every key in 'subset' exists in 'superset' and their corresponding values are equal.
    func Contains[M1, M2 ~map[K]V, K comparable, V comparable](superset M1, subset M2) bool {
    	for key, value := range subset {
    		if supersetValue, ok := superset[key]; !ok || supersetValue != value {
    			return false
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 22:48:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. pkg/test/framework/components/cluster/clusters.go

    		return true
    	}, exclude(excluded...))
    }
    
    // Configs returns the subset that are config clusters.
    func (c Clusters) Configs(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return cc.IsConfig()
    	}, exclude(excluded...))
    }
    
    // Remotes returns the subset that are remote clusters.
    func (c Clusters) Remotes(excluded ...Cluster) Clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top