Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,598 for host3 (0.04 sec)

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

    		for _, h := range rule.Hosts {
    			// TODO: This is a bug. VirtualServices can have many hosts
    			// while the user might be importing only a single host
    			// We need to generate a new VirtualService with just the matched host
    			if servicesByName[host.Name(h)] != nil {
    				match = true
    				break
    			}
    
    			if host.Name(h).IsWildCarded() {
    				// Process wildcard vs host as it need to follow the slow path of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (1)
  2. samples/bookinfo/networking/egress-rule-google-apis.yaml

    kind: ServiceEntry
    metadata:
      name: googleapis
    spec:
      hosts:
      - www.googleapis.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 443
        name: https
        protocol: HTTPS
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: rewrite-port-for-googleapis
    spec:
      hosts:
      - www.googleapis.com
      http:
      - match:
        - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 17:07:25 UTC 2019
    - 885 bytes
    - Viewed (0)
  3. samples/bookinfo/networking/fault-injection-details-v1.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: details
    spec:
      hosts:
      - details
      http:
      - fault:
          abort:
            httpStatus: 555
            percentage:
              value: 100
        route:
        - destination:
            host: details
            subset: v1
      - route:
        - destination:
            host: details
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 09 16:11:17 UTC 2020
    - 522 bytes
    - Viewed (0)
  4. samples/bookinfo/networking/virtual-service-reviews-v2-v3.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
        - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v2
          weight: 50
        - destination:
            host: reviews
            subset: v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 290 bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcweb/vcstest/vcstest.go

    	}
    	vcs.VCSTestRepoURL = srv.HTTP.URL
    	vcs.VCSTestHosts = Hosts
    
    	var interceptors []web.Interceptor
    	for _, host := range Hosts {
    		interceptors = append(interceptors,
    			web.Interceptor{Scheme: "http", FromHost: host, ToHost: httpURL.Host, Client: srv.HTTP.Client()},
    			web.Interceptor{Scheme: "https", FromHost: host, ToHost: httpsURL.Host, Client: srv.HTTPS.Client()})
    	}
    	web.EnableTestHooks(interceptors)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/telemetry/telemetry.go

    // shortHostName constructs the name from kubernetes hosts based on attributes (name and namespace).
    // For other hosts like VMs, this method does not do any thing - just returns the passed in host as is.
    func shortHostName(host string, attributes *model.ServiceAttributes) string {
    	if attributes.ServiceRegistry == provider.Kubernetes {
    		return attributes.Name + "." + attributes.Namespace
    	}
    	return host
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml.golden

      namespace: istio-system
    spec:
      gateways:
      - istio-system/eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      hosts:
      - '*'
      tls:
      - match:
        - sniHosts:
          - '*'
        route:
        - destination:
            host: istiod.istio-system.svc.domain.suffix
            port:
              number: 15012
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. samples/bookinfo/networking/virtual-service-reviews-jason-v2-v3.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    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)
  9. samples/bookinfo/networking/virtual-service-reviews-90-10.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
        - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v1
          weight: 90
        - destination:
            host: reviews
            subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 290 bytes
    - Viewed (0)
  10. internal/grid/connection_test.go

    				t.Errorf("shouldConnect(%q, %q) != shouldConnect(%q, %q)", hosts[x], hosts[y], hosts[y], hosts[x])
    			}
    			if c.shouldConnect() {
    				should++
    			}
    		}
    		if should < 10 {
    			t.Errorf("host %q only connects to %d hosts", hosts[x], should)
    		}
    		t.Logf("host %q should connect to %d hosts", hosts[x], should)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top