Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for subset16 (0.23 sec)

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

    func (lb *ListenerBuilder) GetDestinationCluster(destination *networking.Destination, service *model.Service, listenerPort int) string {
    	dir, subset, port := model.TrafficDirectionInboundVIP, "http", listenerPort
    	if destination.Subset != "" {
    		subset += "/" + destination.Subset
    	}
    	if destination.GetPort() != nil {
    		port = int(destination.GetPort().GetNumber())
    	} else if service != nil && len(service.Ports) == 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client.go

    // This is used for CRUD operators on Istio configuration, as well as handling of events on config changes
    type Client struct {
    	// schemas defines the set of schemas used by this client.
    	// Note: this must be a subset of the schemas defined in the codegen
    	schemas collection.Schemas
    
    	// domainSuffix for the config metadata
    	domainSuffix string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    			continue
    		}
    		// Ours is shorter. If it matches the checkListener, then it should ONLY match that one
    		// Note protocol, port, etc are already considered when we construct bannedHostnames
    		if routeHost.SubsetOf(host.Name(checkListener)) {
    			return false
    		}
    	}
    	return true
    }
    
    func filteredReferences(parents []routeParentReference) []routeParentReference {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top