Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EndpointDiscoverabilityPolicy (0.2 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    // cluster and generates discoverability policies for the endpoints.
    type serviceExportCache interface {
    	// EndpointDiscoverabilityPolicy returns the policy for Service endpoints residing within the current cluster.
    	EndpointDiscoverabilityPolicy(svc *model.Service) model.EndpointDiscoverabilityPolicy
    
    	// ExportedServices returns the list of services that are exported in this cluster. Used for debugging.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	return out
    }
    
    func (b *EndpointBuilder) buildIstioEndpoint(
    	endpointAddress string,
    	endpointPort int32,
    	svcPortName string,
    	discoverabilityPolicy model.EndpointDiscoverabilityPolicy,
    	healthStatus model.HealthStatus,
    ) *model.IstioEndpoint {
    	if b == nil {
    		return nil
    	}
    
    	// in case pod is not found when init EndpointBuilder.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top