Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 199 for targetPod (0.2 sec)

  1. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	_, modifiedPod, err := util.As[*v1.Pod](oldObj, newObj)
    	if err != nil {
    		return framework.Queue, err
    	}
    
    	if modifiedPod.UID != pod.UID {
    		// If the update event is not for targetPod, it wouldn't make targetPod schedulable.
    		return framework.QueueSkip, nil
    	}
    
    	if len(modifiedPod.Spec.SchedulingGates) == 0 {
    		return framework.Queue, nil
    	}
    	return framework.QueueSkip, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    		// Get pod IPs for service B.
    		pods, err := c.PodsForSelector(context.TODO(), destNS, "app="+destName)
    		if err == nil {
    			for _, destPod := range pods.Items {
    				info.TargetPod = append(info.TargetPod, destPod.Status.PodIP)
    			}
    			sort.Strings(info.TargetPod)
    		}
    
    		// Get the East-West Gateway IP
    		svc, err := c.Kube().CoreV1().Services(istioNS).Get(context.TODO(), "istio-eastwestgateway", metav1.GetOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/fit.go

    func (f *Fit) isResourceScaleDown(targetPod, originalPod, modifiedPod *v1.Pod) bool {
    	if modifiedPod.UID != targetPod.UID && modifiedPod.Spec.NodeName == "" {
    		// If the update event is not for targetPod and a scheduled Pod,
    		// it wouldn't make targetPod schedulable.
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    	return values
    }
    
    func Test_InFlightPods(t *testing.T) {
    	logger, _ := ktesting.NewTestContext(t)
    	pod := st.MakePod().Name("targetpod").UID("pod1").Obj()
    	pod2 := st.MakePod().Name("targetpod2").UID("pod2").Obj()
    	pod3 := st.MakePod().Name("targetpod3").UID("pod3").Obj()
    	var poppedPod, poppedPod2 *framework.QueuedPodInfo
    
    	type action struct {
    		// ONLY ONE of the following should be set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/replica_set.go

    		var wg sync.WaitGroup
    		wg.Add(diff)
    		for _, pod := range podsToDelete {
    			go func(targetPod *v1.Pod) {
    				defer wg.Done()
    				if err := rsc.podControl.DeletePod(ctx, rs.Namespace, targetPod.Name, rs); err != nil {
    					// Decrement the expected number of deletes because the informer won't observe this deletion
    					podKey := controller.PodKey(targetPod)
    					rsc.expectations.DeletionObserved(logger, rsKey, podKey)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    		if m[pair] == 0 {
    			delete(m, pair)
    		}
    	}
    }
    
    // updates the topologyToMatchedTermCount map with the specified value
    // for each affinity term if "targetPod" matches ALL terms.
    func (m topologyToMatchedTermCount) updateWithAffinityTerms(
    	terms []framework.AffinityTerm, pod *v1.Pod, node *v1.Node, value int64) {
    	if podMatchesAllAffinityTerms(terms, pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. internal/event/targetid.go

    	"fmt"
    	"strings"
    )
    
    // TargetID - holds identification and name strings of notification target.
    type TargetID struct {
    	ID   string
    	Name string
    }
    
    // String - returns string representation.
    func (tid TargetID) String() string {
    	return tid.ID + ":" + tid.Name
    }
    
    // ToARN - converts to ARN.
    func (tid TargetID) ToARN(region string) ARN {
    	return ARN{TargetID: tid, region: region}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. internal/config/lambda/event/targetid.go

    	"fmt"
    	"strings"
    )
    
    // TargetID - holds identification and name strings of notification target.
    type TargetID struct {
    	ID   string
    	Name string
    }
    
    // String - returns string representation.
    func (tid TargetID) String() string {
    	return tid.ID + ":" + tid.Name
    }
    
    // ToARN - converts to ARN.
    func (tid TargetID) ToARN(region string) ARN {
    	return ARN{TargetID: tid, region: region}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. cmd/metrics-v3-audit.go

    	auditTotalMessages     = "total_messages"
    	targetID               = "target_id"
    )
    
    var (
    	auditFailedMessagesMD = NewCounterMD(auditFailedMessages,
    		"Total number of messages that failed to send since start",
    		targetID)
    	auditTargetQueueLengthMD = NewGaugeMD(auditTargetQueueLength,
    		"Number of unsent messages in queue for target",
    		targetID)
    	auditTotalMessagesMD = NewCounterMD(auditTotalMessages,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:50:39 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. internal/event/targetidset_test.go

    		{NewTargetIDSet(), NewTargetIDSet(TargetID{"1", "webhook"}), NewTargetIDSet(TargetID{"1", "webhook"})},
    		{NewTargetIDSet(TargetID{"1", "webhook"}), NewTargetIDSet(), NewTargetIDSet(TargetID{"1", "webhook"})},
    		{NewTargetIDSet(TargetID{"1", "webhook"}), NewTargetIDSet(TargetID{"2", "amqp"}), NewTargetIDSet(TargetID{"1", "webhook"}, TargetID{"2", "amqp"})},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top