Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 591 for Pods (0.18 sec)

  1. pkg/kubelet/userns/userns_manager_test.go

    		runningPods          []*kubecontainer.Pod
    		pods                 []*v1.Pod
    		listPods             []types.UID /* pods to list */
    		podSetBeforeCleanup  []types.UID /* pods to record before cleanup */
    		podSetAfterCleanup   []types.UID /* pods set expected after cleanup */
    		podUnsetAfterCleanup []types.UID /* pods set expected after cleanup */
    	}{
    		{
    			name:     "no stale pods",
    			listPods: []types.UID{"pod-1", "pod-2"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pkg/scheduler/extender.go

    			return nil, err
    		}
    		victims := &extenderv1.Victims{
    			Pods:             []*v1.Pod{},
    			NumPDBViolations: metaVictims.NumPDBViolations,
    		}
    		for _, metaPod := range metaVictims.Pods {
    			pod, err := h.convertPodUIDToPod(metaPod, nodeInfo)
    			if err != nil {
    				return nil, err
    			}
    			victims.Pods = append(victims.Pods, pod)
    		}
    		nodeNameToVictims[nodeName] = victims
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/cluster/cluster.go

    	for _, eld := range config.Exclude {
    		if len(eld.Namespaces) > 0 {
    			if isIncludeOrExcludeEntriesMatched(eld.Namespaces, pod.Namespace) {
    				return true
    			}
    		}
    		if len(eld.Pods) > 0 {
    			if isIncludeOrExcludeEntriesMatched(eld.Pods, pod.Name) {
    				return true
    			}
    		}
    		if len(eld.Containers) > 0 {
    			for _, c := range pod.Spec.Containers {
    				if isIncludeOrExcludeEntriesMatched(eld.Containers, c.Name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (1)
  4. pkg/apis/batch/types.go

    	// Specifies the maximum desired number of pods the job should
    	// run at any given time. The actual number of pods running in steady state will
    	// be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism),
    	// i.e. when the work left to do is less than max parallelism.
    	// +optional
    	Parallelism *int32
    
    	// Specifies the desired number of successfully finished pods the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_getters.go

    }
    
    // GetPods returns all pods bound to the kubelet and their spec, and the mirror
    // pods.
    func (kl *Kubelet) GetPods() []*v1.Pod {
    	pods := kl.podManager.GetPods()
    	// a kubelet running without apiserver requires an additional
    	// update of the static pod status. See #57106
    	for i, p := range pods {
    		if kubelettypes.IsStaticPod(p) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1/generated.proto

    message NetworkPolicyPeer {
      // podSelector is a label selector which selects pods. This field follows standard label
      // selector semantics; if present but empty, it selects all pods.
      //
      // If namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects
      // the pods matching podSelector in the Namespaces selected by NamespaceSelector.
      // Otherwise it selects the pods matching podSelector in the policy's own namespace.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"suspend":                 "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending a Job will reset the StartTime field of...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. pkg/apis/networking/types.go

    	// Multiple network policies can select the same set of pods. In this case,
    	// the ingress rules for each are combined additively.
    	// This field is NOT optional and follows standard label selector semantics.
    	// An empty podSelector matches all pods in this namespace.
    	PodSelector metav1.LabelSelector
    
    	// ingress is a list of ingress rules to be applied to the selected pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/interface.go

    // and Pods rejected by these plugins are requeued based on this extension point.
    // Failures from other extension points are regarded as temporal errors (e.g., network failure),
    // and the scheduler requeue Pods without this extension point - always requeue Pods to activeQ after backoff.
    // This is because such temporal errors cannot be resolved by specific cluster events,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. plugin/pkg/admission/noderestriction/admission.go

    		existingPod, err := p.podsGetter.Pods(a.GetNamespace()).Get(a.GetName())
    		if apierrors.IsNotFound(err) {
    			return err
    		}
    		if err != nil {
    			return admission.NewForbidden(a, err)
    		}
    		// only allow a node to delete a pod bound to itself
    		if existingPod.Spec.NodeName != nodeName {
    			return admission.NewForbidden(a, fmt.Errorf("node %q can only delete pods with spec.nodeName set to itself", nodeName))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top