Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,598 for host3 (0.06 sec)

  1. pilot/pkg/networking/core/gateway.go

    			virtualServiceHosts := host.NewNames(virtualService.Spec.(*networking.VirtualService).Hosts)
    			serverHosts := host.NamesForNamespace(server.Hosts, virtualService.Namespace)
    
    			// We have two cases here:
    			// 1. virtualService hosts are 1.foo.com, 2.foo.com, 3.foo.com and server hosts are ns/*.foo.com
    			// 2. virtualService hosts are *.foo.com, and server hosts are ns/1.foo.com, ns/2.foo.com, ns/3.foo.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

    kind: VirtualService
    metadata:
      name: mesh-route-outbound-traffic-to-external-svc-via-egress-gw
    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. samples/bookinfo/networking/virtual-service-ratings-db.yaml

    kind: VirtualService
    metadata:
      name: reviews
    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)
  4. samples/multicluster/expose-istiod-rev.yaml.tmpl

          tls:
            mode: PASSTHROUGH        
          hosts:
            - "*"
        - port:
            name: tls-istiodwebhook
            number: 15017
            protocol: tls
          tls:
            mode: PASSTHROUGH          
          hosts:
            - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: istiod-vs-{{.Revision}}
    spec:
      hosts:
      - "*"
      gateways:
      - istiod-gateway
      tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 05:22:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/invalid.yaml.golden

    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-default
      hosts:
      - third.domain.example
      http:
      - name: default.invalid-backendRef-mixed.0
        route:
        - destination:
            host: nonexistent.default.svc.domain.suffix
            port:
              number: 80
          weight: 1
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
          weight: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. samples/bookinfo/networking/virtual-service-ratings-mysql.yaml

    kind: VirtualService
    metadata:
      name: reviews
    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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 402 bytes
    - Viewed (0)
  7. tests/testdata/config/rule-weighted-route.yaml

    metadata:
      name: c-weighted
      namespace: testns
    spec:
      host: c-weighted.extsvc.com
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: c-weighted
      namespace: testns
    spec:
      hosts:
        - c-weighted.extsvc.com
      http:
        - route:
          - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. samples/bookinfo/networking/virtual-service-ratings-mysql-vm.yaml

    kind: VirtualService
    metadata:
      name: reviews
    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)
  9. pkg/config/validation/virtualservice_test.go

    			in: &networking.VirtualService{
    				Hosts: []string{},
    				Tcp: []*networking.TCPRoute{{
    					Route: []*networking.RouteDestination{{
    						Destination: &networking.Destination{Host: "foo.baz"},
    					}},
    				}},
    			},
    			valid: false,
    		},
    		{
    			name: "delegate with gateway",
    			in: &networking.VirtualService{
    				Hosts:    []string{},
    				Gateways: []string{"test"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

      name: http-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-terminate
      hosts:
      - domain.example
      http:
      - name: default.http.0
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top