Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 266 for lmhosts (0.1 sec)

  1. pilot/pkg/features/experimental.go

    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    			" to unhealthy/non-ready hosts even if the percentage of healthy hosts fall below minimum health percentage(panic threshold).",
    	).Get())
    
    	EnablePersistentSessionFilter = env.Register(
    		"PILOT_ENABLE_PERSISTENT_SESSION_FILTER",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/config_test.go

    		for i := 1; i <= bm.time; i++ {
    			// these specific non-wildcard hosts are crafted this way to never match the needle,
    			// this should replicate real-world scenarios of mixed specific and wildcard hosts
    			specific := host.Name(strconv.Itoa(i) + "." + bm.baseHost)
    			// generate correct wildcard hosts, one of these will match
    			wildcard := host.Name("*." + bm.baseHost + "." + strconv.Itoa(i))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

        port:
          name: tls
          number: 8080
          protocol: TCP
      egress:
      - hosts:
        - "*/*"
      workloadSelector:
        labels:
          app: foo
    ---`
    	instancePorts := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se
    spec:
      hosts:
      - foo.bar
      endpoints:
      - address: 1.1.1.1
        labels:
          app: foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. istioctl/pkg/validate/validate_test.go

    spec:
      exportTo:
      - '.'
      hosts:
      - d
      http:
      - route:
        - destination:
            host: c
            subset: v1`
    	validVirtualService2JSON = `{
    "apiVersion": "networking.istio.io/v1alpha3",
    "kind": "VirtualService",
    "metadata": {
    	"name": "valid-virtual-service2"
    },
    "spec": {
    	"exportTo": [
    	"."
    	],
    	"hosts": [
    	"d"
    	],
    	"http": [
    	{
    		"route": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    		return nil
    	}
    	return envoyfilter.ApplyClusterMerge(p.pctx, p.efw, c, hosts)
    }
    
    func (p clusterPatcher) conditionallyAppend(l []*cluster.Cluster, hosts []host.Name, clusters ...*cluster.Cluster) []*cluster.Cluster {
    	if !p.hasPatches() {
    		return append(l, clusters...)
    	}
    	for _, c := range clusters {
    		if patched := p.doPatch(hosts, c); patched != nil {
    			l = append(l, patched)
    		}
    	}
    	return l
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice.go

    	// Kubernetes Gateway API semantics support shortnames
    	if UseGatewaySemantics(config.Config{Meta: meta}) {
    		return
    	}
    
    	// resolve top level hosts
    	for i, h := range rule.Hosts {
    		rule.Hosts[i] = string(ResolveShortnameToFQDN(h, meta))
    	}
    	// resolve gateways to bind to
    	for i, g := range rule.Gateways {
    		if g != constants.IstioMeshGateway {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. build/root/Makefile

    #    default built-in spec (system.DefaultSpec) will be used.
    #  IMAGES: For REMOTE=true only.  Comma delimited list of images for creating
    #    remote hosts to run tests against.  Defaults to a recent image.
    #  HOSTS: For REMOTE=true only.  Comma delimited list of running gce hosts to
    #    run tests against.  Defaults to "".
    #  DELETE_INSTANCES: For REMOTE=true only.  Delete any instances created as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. internal/grid/manager.go

    type ManagerOptions struct {
    	Dialer       ContextDialer               // Outgoing dialer.
    	Local        string                      // Local host name.
    	Hosts        []string                    // All hosts, including local in the grid.
    	AddAuth      AuthFn                      // Add authentication to the given audience.
    	AuthRequest  func(r *http.Request) error // Validate incoming requests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/net/cgo_unix.go

    		}
    	}
    }
    
    func cgoLookupHost(ctx context.Context, name string) (hosts []string, err error) {
    	addrs, err := cgoLookupIP(ctx, "ip", name)
    	if err != nil {
    		return nil, err
    	}
    	for _, addr := range addrs {
    		hosts = append(hosts, addr.String())
    	}
    	return hosts, nil
    }
    
    func cgoLookupPort(ctx context.Context, network, service string) (port int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/proxy/endpointslicecache_test.go

    			},
    		}
    
    		if len(hosts) > 0 {
    			hostname := hosts[i%len(hosts)]
    			endpoint.NodeName = &hostname
    		}
    
    		endpointSlice.Endpoints = append(endpointSlice.Endpoints, endpoint)
    	}
    
    	return endpointSlice
    }
    
    func generateEndpointSlice(serviceName, namespace string, sliceNum, numEndpoints, unreadyMod int, terminatingMod int, hosts []string, portNums []*int32) *discovery.EndpointSlice {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top