Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AlwaysDiscoverable (0.31 sec)

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

    	if len(pc.c.handlers.GetWorkloadHandlers()) == 0 {
    		return
    	}
    	// fire instance handles for workload
    	ep := pc.c.NewEndpointBuilder(pod).buildIstioEndpoint(pod.Status.PodIP, 0, "", model.AlwaysDiscoverable, model.Healthy)
    	workloadInstance := &model.WorkloadInstance{
    		Name:      pod.Name,
    		Namespace: pod.Namespace,
    		Kind:      model.PodKind,
    		Endpoint:  ep,
    		PortMap:   getPortMap(pod),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/service.go

    	return []cmp.Option{endpointDiscoverabilityPolicyImplCmpOpt}
    }
    
    // AlwaysDiscoverable is an EndpointDiscoverabilityPolicy that allows an endpoint to be discoverable throughout the mesh.
    var AlwaysDiscoverable EndpointDiscoverabilityPolicy = &endpointDiscoverabilityPolicyImpl{
    	name: "AlwaysDiscoverable",
    	f: func(*IstioEndpoint, *Proxy) bool {
    		return true
    	},
    }
    
    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