Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for getProxyServiceTargets (0.27 sec)

  1. pilot/pkg/model/context.go

    		AutoPassthroughSNIHosts:         prevMergedGateway.GetAutoPassthrughGatewaySNIHosts(),
    	}
    }
    
    func (node *Proxy) SetServiceTargets(serviceDiscovery ServiceDiscovery) {
    	instances := serviceDiscovery.GetProxyServiceTargets(node)
    
    	// Keep service instances in order of creation/hostname.
    	sort.SliceStable(instances, func(i, j int) bool {
    		if instances[i].Service != nil && instances[j].Service != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  2. pilot/pkg/model/push_context.go

    	// the sidecar calls.
    	// Updated by GetProxyServiceTargets
    	ProxyStatusNoService = monitoring.NewGauge(
    		"pilot_no_ip",
    		"Pods not found in the endpoint table, possibly invalid.",
    	)
    
    	// ProxyStatusEndpointNotReady represents proxies found not be ready.
    	// Updated by GetProxyServiceTargets. Normal condition when starting
    	// an app with readiness, error if it doesn't change to 0.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    	return l.services
    }
    
    func (l *localServiceDiscovery) GetService(host.Name) *Service {
    	panic("implement me")
    }
    
    func (l *localServiceDiscovery) GetProxyServiceTargets(*Proxy) []ServiceTarget {
    	panic("implement me")
    }
    
    func (l *localServiceDiscovery) GetProxyWorkloadLabels(*Proxy) labels.Instance {
    	panic("implement me")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	t.Helper()
    	// The system is eventually consistent, so add some retries
    	retry.UntilSuccessOrFail(t, func() error {
    		instances := sd.GetProxyServiceTargets(&model.Proxy{IPAddresses: []string{ip}, Metadata: &model.NodeMetadata{}})
    		sortServiceTargets(instances)
    		sortServiceTargets(expected)
    		if err := compare(t, instances, expected); err != nil {
    			return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top