Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,208 for host3 (0.09 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 (0)
  2. 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)
  3. pkg/test/datasets/validation/dataset/networking-v1beta1-VirtualService.yaml

    apiVersion: networking.istio.io/v1beta1
    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: Mon Apr 01 14:30:05 UTC 2024
    - 303 bytes
    - Viewed (0)
  4. internal/grid/debug.go

    		Timeout: 5 * time.Second,
    	}
    	var res TestGrid
    	res.Hosts = hosts
    	ready := make(chan struct{})
    	ctx, cancel := context.WithCancel(context.Background())
    	res.cancel = cancel
    	for i, host := range hosts {
    		manager, err := NewManager(ctx, ManagerOptions{
    			Dialer: dialer.DialContext,
    			Local:  host,
    			Hosts:  hosts,
    			AuthRequest: func(r *http.Request) error {
    				return nil
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    			c.Report(gvk.Gateway, m)
    		}
    	}
    }
    
    // isGWsHostMatched implements gateway's hosts match
    func isGWsHostMatched(gwInstance string, gwHostList []string) bool {
    	gwInstanceNamed := host.Name(gwInstance)
    	for _, gwElem := range gwHostList {
    		gwElemNamed := host.Name(gwElem)
    		if gwInstanceNamed.Matches(gwElemNamed) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    		// If inbound cluster match has service, we should see if it matches with any host name across all instances.
    		hosts := make([]host.Name, 0, len(instances))
    		for _, si := range instances {
    			hosts = append(hosts, si.Service.Hostname)
    		}
    		clusters = cp.conditionallyAppend(clusters, hosts, localCluster.build())
    	}
    	return clusters
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    	}
    	return
    }
    
    // convert ./host to currentNamespace/Host
    // */host to just host
    // */* to just *
    func sanitizeServerHostNamespace(server *networking.Server, namespace string) {
    	for i, h := range server.Hosts {
    		if strings.Contains(h, "/") {
    			parts := strings.Split(h, "/")
    			if parts[0] == "." {
    				server.Hosts[i] = namespace + "/" + parts[1] // format: %s/%s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pkg/test/datasets/validation/dataset/networking-v1-VirtualService.yaml

    apiVersion: networking.istio.io/v1
    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: Mon Apr 01 14:30:05 UTC 2024
    - 298 bytes
    - Viewed (0)
  9. src/net/conf_test.go

    			c: &conf{
    				netGo: true,
    			},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: dns files"),
    			hostTests: []nssHostTest{
    				{"x.com", "myhostname", hostLookupDNSFiles},
    			},
    		},
    		{
    			name: "netgo_fallback_on_cgo",
    			c: &conf{
    				netGo: true,
    			},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: dns files something_custom"),
    			hostTests: []nssHostTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. tests/integration/pilot/ingress_test.go

      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: app
    spec:
      hosts:
      - "*"
      gateways:
      - app
      http:
      - route:
        - destination:
            host: {{ .host }}
            port:
              number: 80
    `).Apply(apply.NoCleanup)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top