Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for EDSUpdate (0.23 sec)

  1. pilot/pkg/xds/eds.go

    	if event == model.EventDelete {
    		inboundServiceDeletes.Increment()
    		s.Env.EndpointIndex.DeleteServiceShard(shard, hostname, namespace, false)
    	} else {
    		inboundServiceUpdates.Increment()
    	}
    }
    
    // EDSUpdate computes destination address membership across all clusters and networks.
    // This is the main method implementing EDS.
    // It replaces InstancesByPort in model - instead of iterating over all endpoints it uses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller.go

    	s.mutex.RUnlock()
    	s.edsUpdate(allInstances)
    	// HACK to workaround Service syncing after WorkloadEntry: https://github.com/istio/istio/issues/45114
    	s.workloadInstances.ForEach(func(wi *model.WorkloadInstance) {
    		if wi.Kind == model.WorkloadEntryKind {
    			s.NotifyWorkloadInstanceHandlers(wi, model.EventAdd)
    		}
    	})
    }
    
    // edsUpdate triggers an EDS push serially such that we can prevent all instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/memory/discovery.go

    		key := fmt.Sprintf("%s:%s", service, port.Name)
    		for _, i := range sd.instancesByPortName[key] {
    			eps = append(eps, i.Endpoint)
    		}
    	}
    	if sd.XdsUpdater != nil {
    		sd.XdsUpdater.EDSUpdate(sd.shardKey(), string(service), svc.Attributes.Namespace, eps)
    	}
    }
    
    // AddEndpoint adds an endpoint to a service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			} else {
    				log.Debugf("Handle EDS endpoint: skip collecting workload entry endpoints, service %s/ has not been populated",
    					hostname)
    			}
    		}
    
    		esc.c.opts.XDSUpdater.EDSUpdate(shard, string(hostname), namespace, endpoints)
    	}
    }
    
    // getPod fetches a pod by name or IP address.
    // A pod may be missing (nil) for two reasons:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    func NewEndpointIndexUpdater(ei *EndpointIndex) *EndpointIndexUpdater {
    	return &EndpointIndexUpdater{Index: ei}
    }
    
    func (f *EndpointIndexUpdater) ConfigUpdate(*PushRequest) {}
    
    func (f *EndpointIndexUpdater) EDSUpdate(shard ShardKey, serviceName string, namespace string, eps []*IstioEndpoint) {
    	pushType := f.Index.UpdateServiceEndpoints(shard, serviceName, namespace, eps)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top