Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PassthroughTargetPorts (0.26 sec)

  1. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			DefaultAddress: ha.address,
    			Ports:          ports,
    			Resolution:     resolution,
    			Attributes: model.ServiceAttributes{
    				ServiceRegistry:        provider.External,
    				PassthroughTargetPorts: overrides,
    				Name:                   ha.host,
    				Namespace:              namespace,
    				Labels:                 lbls,
    				ExportTo:               exportTo,
    				LabelSelectors:         selectors,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    			ClusterName: name,
    			Endpoints:   localityLbEndpoints,
    		}
    	case cluster.Cluster_ORIGINAL_DST:
    		if features.PassthroughTargetPort {
    			if override, f := service.Attributes.PassthroughTargetPorts[uint32(port.Port)]; f {
    				c.LbConfig = &cluster.Cluster_OriginalDstLbConfig_{
    					OriginalDstLbConfig: &cluster.Cluster_OriginalDstLbConfig{
    						UpstreamPortOverride: wrappers.UInt32(override),
    					},
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    	// The port that the user provides in the meshNetworks config is the service port.
    	// We translate that to the appropriate node port here.
    	ClusterExternalPorts map[cluster.ID]map[uint32]uint32
    
    	PassthroughTargetPorts map[uint32]uint32
    
    	K8sAttributes
    }
    
    type NamespacedHostname struct {
    	Hostname  host.Name
    	Namespace string
    }
    
    type K8sAttributes struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top