Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,025 for host2 (0.27 sec)

  1. hack/make-rules/test-e2e-node.sh

      # by moving the IMAGE to a HOST
      if [[ ${images} != "" ]]; then
      IFS=',' read -ra IM <<< "${images}"
           images=""
           for i in "${IM[@]}"; do
             if gcloud compute instances list --project="${project}" --filter="name:'${instance_prefix}-${i}' AND zone:'${zone}'" | grep "${i}"; then
               if [[ "${hosts}" != "" ]]; then
                 hosts="${hosts},"
               fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/ingress.go

    func (c *ingressImpl) HTTPSAddresses() ([]string, []int) {
    	return c.AddressesForPort(443)
    }
    
    // DiscoveryAddresses returns the externally reachable discovery addresses (15012) of the component.
    func (c *ingressImpl) DiscoveryAddresses() []netip.AddrPort {
    	hosts, ports := c.AddressesForPort(discoveryPort)
    	var addrs []netip.AddrPort
    	if hosts == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar.go

    		}
    
    		// exact hosts are saved separately for map lookup
    		if !hName.IsWildCarded() {
    			hostsByNamespace[ns].exactHosts.Insert(hName)
    		}
    
    		// allHosts contains the exact hosts and wildcard hosts,
    		// since SelectVirtualServices will use `Matches` semantic matching.
    		hc := hostsByNamespace[ns]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    		}
    
    		hc := hostsByNamespace[ns]
    		hc.allHosts = append(hc.allHosts, svc.Hostname)
    		hostsByNamespace[ns] = hc
    
    		if !svc.Hostname.IsWildCarded() {
    			hostsByNamespace[ns].exactHosts.Insert(svc.Hostname)
    		}
    	}
    
    	virtualServiceSpec1 := &networking.VirtualService{
    		Hosts:    []string{"test-private-2.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. pkg/dns/client/dns.go

    ) {
    	for hostname, ni := range nt.Table {
    		// Given a host
    		// if its a non-k8s host, store the host+. as the key with the pre-computed DNS RR records
    		// if its a k8s host, store all variants (i.e. shortname+., shortname+namespace+., fqdn+., etc.)
    		// shortname+. is only for hosts in current namespace
    		var altHosts sets.String
    		if ni.Registry == string(provider.Kubernetes) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe_test.go

    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
       Route to host "productpage3" with weight 50%
       Match: /prefix*
    --------------------
    Exposed on Ingress Gateway http://1.1.1.1
    Exposed on Ingress Gateway http://2.2.2.2
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              # don't overwrite /etc/hosts since it's managed by kubeproxy
              #sudo sh -c 'cat /var/run/secrets/istio/bootstrap/hosts >> /etc/hosts'
    
              # since we're not overwriting /etc/hosts on k8s, verify that istiod hostname in /etc/hosts
              # matches the value generated by istioctl
              echo "checking istio host"
              SYSTEM_HOST=$(cat /etc/hosts | grep istiod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/httproute_test.go

    					},
    					Bind:  "unix://foo/bar/headless",
    					Hosts: []string{"*/test-headless.com"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   18888,
    						Protocol: "HTTP",
    						Name:     "foo",
    					},
    					Hosts: []string{"*/test-headless.com"},
    				},
    				{
    					// Wildcard egress importing from all namespaces
    					Hosts: []string{"*/*"},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. src/net/http/servemux121.go

    // The path is known to be in canonical form, except for CONNECT methods.
    func (mux *serveMux121) handler(host, path string) (h Handler, pattern string) {
    	mux.mu.RLock()
    	defer mux.mu.RUnlock()
    
    	// Host-specific pattern takes precedence over generic ones
    	if mux.hosts {
    		h, pattern = mux.match(host + path)
    	}
    	if h == nil {
    		h, pattern = mux.match(path)
    	}
    	if h == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    		name: "set host header in route and multi destination",
    		config: `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
      - {{ (index .dst 0).Config.Service }}
      http:
      - route:
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
                Host: dest-authority
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top