 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package service provides EndpointController implementation to manage and sync service endpoints.
CAUTION: If you update code in this file, you may need to also update code
in contrib/mesos/pkg/service/endpoints_controller.go
Index ¶
Constants ¶
      View Source
      
  
const ( // We'll attempt to recompute EVERY service's endpoints at least this // often. Higher numbers = lower CPU/network load; lower numbers = // shorter amount of time before a mistaken endpoint is corrected. FullServiceResyncPeriod = 30 * time.Second // We'll keep pod watches open up to this long. In the unlikely case // that a watch misdelivers info about a pod, it'll take this long for // that mistake to be rectified. PodRelistPeriod = 5 * time.Minute )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EndpointController ¶
type EndpointController struct {
	// contains filtered or unexported fields
}
    EndpointController manages selector-based service endpoints.
func NewEndpointController ¶
func NewEndpointController(client *client.Client) *EndpointController
NewEndpointController returns a new *EndpointController.
func (*EndpointController) Run ¶ added in v0.16.1
func (e *EndpointController) Run(workers int, stopCh <-chan struct{})
Runs e; will not return until stopCh is closed. workers determines how many endpoints will be handled in parallel.
 Click to show internal directories. 
   Click to hide internal directories.