Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,389 for podIps (0.43 sec)

  1. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    	"tolerations":  "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			maxVols:      4,
    			test:         "fits when node capacity >= new pod's AzureDisk volumes",
    		},
    		{
    			newPod:       twoAzureDiskPod,
    			existingPods: []*v1.Pod{oneAzureDiskPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      2,
    			test:         "fit when node capacity < new pod's AzureDisk volumes",
    		},
    		{
    			newPod:       splitAzureDiskPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    			}
    			count := countPodsMatchSelector(nodeInfo.Pods, c.Selector, pod.Namespace)
    			atomic.AddInt64(tpCount, int64(count))
    		}
    	}
    	pl.parallelizer.Until(ctx, len(allNodes), processAllNode, pl.Name())
    
    	cycleState.Write(preScoreStateKey, state)
    	return nil
    }
    
    // Score invoked at the Score extension point.
    // The "score" returned in this function is the matching number of pods on the `nodeName`,
    // it is normalized later.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/types_pluginargs.go

    	metav1.TypeMeta
    
    	// AddedAffinity is applied to all Pods additionally to the NodeAffinity
    	// specified in the PodSpec. That is, Nodes need to satisfy AddedAffinity
    	// AND .spec.NodeAffinity. AddedAffinity is empty by default (all Nodes
    	// match).
    	// When AddedAffinity is used, some Pods with affinity requirements that match
    	// a specific Node (such as Daemonset Pods) might remain unschedulable.
    	AddedAffinity *v1.NodeAffinity
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		wants := ""
    
    		metrics.Register()
    
    		tracker := &basicPodStartupLatencyTracker{
    			pods: map[types.UID]*perPodState{},
    		}
    
    		if err := testutil.GatherAndCompare(metrics.GetGather(), strings.NewReader(wants), metricsName); err != nil {
    			t.Fatal(err)
    		}
    
    		assert.Empty(t, tracker.pods)
    		metrics.PodStartSLIDuration.Reset()
    	})
    }
    
    func TestPodsRunningBeforeKubeletStarted(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    	// Overall node information.
    	node *v1.Node
    
    	// Pods running on the node.
    	Pods []*PodInfo
    
    	// The subset of pods with affinity.
    	PodsWithAffinity []*PodInfo
    
    	// The subset of pods with required anti-affinity.
    	PodsWithRequiredAntiAffinity []*PodInfo
    
    	// Ports allocated on the node.
    	UsedPorts HostPortInfo
    
    	// Total requested resources of all pods on this node. This includes assumed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.17.md

    - Critical pods can now be created in namespaces other than kube-system. To limit critical pods to the kube-system namespace, cluster admins should create an admission configuration file limiting critical pods by default, and a matching quota object in the `kube-system` namespace permitting critical pods in that namespace. See https://kubernetes.io/docs/concepts/policy/resource-quotas/#limit-priority-clas...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							},
    						},
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. plugin/pkg/admission/runtimeclass/admission.go

    // take RuntimeClass into account. For RuntimeClass definitions which describe an overhead associated
    // with running a pod, this admission controller will set the pod.Spec.Overhead field accordingly. This
    // field should only be set through this controller, so validation will be carried out to ensure the pod's
    // value matches what is defined in the coresponding RuntimeClass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 05:53:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/preemption/preemption.go

    		nodeInfoCopy := potentialNodes[(int(offset)+i)%len(potentialNodes)].Snapshot()
    		stateCopy := ev.State.Clone()
    		pods, numPDBViolations, status := ev.SelectVictimsOnNode(ctx, stateCopy, pod, nodeInfoCopy, pdbs)
    		if status.IsSuccess() && len(pods) != 0 {
    			victims := extenderv1.Victims{
    				Pods:             pods,
    				NumPDBViolations: int64(numPDBViolations),
    			}
    			c := &candidate{
    				victims: &victims,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
Back to top