Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MostSpecificHostMatch (0.33 sec)

  1. releasenotes/notes/optimize-most-specific-host-match.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 182 bytes
    - Viewed (0)
  2. pilot/pkg/model/cluster_local.go

    	wildcard sets.Set[host.Name]
    }
    
    // IsClusterLocal indicates whether the given host should be treated as a
    // cluster-local destination.
    func (c ClusterLocalHosts) IsClusterLocal(h host.Name) bool {
    	_, _, ok := MostSpecificHostMatch(h, c.specific, c.wildcard)
    	return ok
    }
    
    // ClusterLocalProvider provides the cluster-local hosts.
    type ClusterLocalProvider interface {
    	// GetClusterLocalHosts returns the list of cluster-local hosts, sorted in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top