Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SvcUpdate (0.19 sec)

  1. pilot/pkg/model/endpointshards.go

    func (f *EndpointIndexUpdater) EDSCacheUpdate(shard ShardKey, serviceName string, namespace string, eps []*IstioEndpoint) {
    	f.Index.UpdateServiceEndpoints(shard, serviceName, namespace, eps)
    }
    
    func (f *EndpointIndexUpdater) SvcUpdate(shard ShardKey, hostname string, namespace string, event Event) {
    	if event == EventDelete {
    		f.Index.DeleteServiceShard(shard, hostname, namespace, false)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/events.go

    	PvcAdd = framework.ClusterEvent{Resource: framework.PersistentVolumeClaim, ActionType: framework.Add, Label: "PvcAdd"}
    	// PvcUpdate is the event when a persistent volume claim is updated in the cluster.
    	PvcUpdate = framework.ClusterEvent{Resource: framework.PersistentVolumeClaim, ActionType: framework.Update, Label: "PvcUpdate"}
    	// StorageClassAdd is the event when a StorageClass is added in the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    
    	events := []framework.ClusterEvent{
    		NodeAdd,
    		NodeTaintChange,
    		NodeAllocatableChange,
    		NodeConditionChange,
    		NodeLabelChange,
    		NodeAnnotationChange,
    		PvcAdd,
    		PvcUpdate,
    		PvAdd,
    		PvUpdate,
    		StorageClassAdd,
    		StorageClassUpdate,
    		CSINodeAdd,
    		CSINodeUpdate,
    		CSIDriverAdd,
    		CSIDriverUpdate,
    		CSIStorageCapacityAdd,
    		CSIStorageCapacityUpdate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top