Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ServiceEndpoints (0.18 sec)

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

    			}
    			delete(expectedHosts, si.Service.Hostname)
    		}
    
    		if len(expectedHosts) > 0 {
    			return fmt.Errorf("failed to find proxy ServiceEndpoints for hosts: %v", expectedHosts)
    		}
    
    		return nil
    	}, serviceImportTimeout)
    }
    
    func (ic *serviceImportCacheImpl) updateKubeService(t *testing.T) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			Namespace:    configKey.namespace,
    		},
    		Service:     service,
    		ServicePort: convertPort(servicePort),
    	}
    }
    
    // convertWorkloadEntryToServiceInstances translates a WorkloadEntry into ServiceEndpoints. This logic is largely the
    // same as the ServiceEntry convertServiceEntryToInstances.
    func (s *Controller) convertWorkloadEntryToServiceInstances(wle *networking.WorkloadEntry, services []*model.Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller.go

    		// metadata already. Because of this, we can still get most of the information we need.
    		// If we cannot accurately construct ServiceEndpoints from just the metadata, this will return an error and we can
    		// attempt to read the real pod.
    		out, err := c.GetProxyServiceTargetsFromMetadata(proxy)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top