Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,369 for Pods (0.12 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	// 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. pkg/controller/job/backoff_utils.go

    				backoff.lastFailureTime = &failedTime
    			}
    			backoff.failuresAfterLastSuccess += 1
    		}
    
    		return *backoff
    
    	}
    
    }
    
    func sortByFinishedTime(pods []*v1.Pod) {
    	sort.Slice(pods, func(i, j int) bool {
    		p1 := pods[i]
    		p2 := pods[j]
    		p1FinishTime := getFinishedTime(p1)
    		p2FinishTime := getFinishedTime(p2)
    
    		return p1FinishTime.Before(p2FinishTime)
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. releasenotes/notes/revision-cmd.yaml

    releaseNotes:
      - |
        **Added** tooling for revision-centric view of current istio deployments in a cluster. This is to
        provide better understanding of deployments - like number of istiod, gateway pods, IstioOperator CRs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 26 15:53:01 UTC 2021
    - 408 bytes
    - Viewed (0)
  4. pkg/scheduler/framework/listers.go

    	// List returns the list of NodeInfos.
    	List() ([]*NodeInfo, error)
    	// HavePodsWithAffinityList returns the list of NodeInfos of nodes with pods with affinity terms.
    	HavePodsWithAffinityList() ([]*NodeInfo, error)
    	// HavePodsWithRequiredAntiAffinityList returns the list of NodeInfos of nodes with pods with required anti-affinity terms.
    	HavePodsWithRequiredAntiAffinityList() ([]*NodeInfo, error)
    	// Get returns the NodeInfo of the given node name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 01:00:41 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"podSelector":       "podSelector is a label selector which selects pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf 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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/metrics.go

    	// RunningPodCount is a gauge that tracks the number of Pods currently with a running sandbox
    	// It is used to expose the kubelet internal state: how many pods have running containers in the container runtime, and mainly for debugging purpose.
    	RunningPodCount = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           RunningPodsKey,
    			Help:           "Number of pods that have a running pod sandbox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/operator/output/operator-dump.json

                ],
                "resources": [
                    "configmaps",
                    "endpoints",
                    "events",
                    "namespaces",
                    "pods",
                    "pods/proxy",
                    "pods/portforward",
                    "persistentvolumeclaims",
                    "secrets",
                    "services",
                    "serviceaccounts",
                    "resourcequotas"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 01:35:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. pkg/scheduler/metrics/resources/resources.go

    	pods, err := c.lister.List(labels.Everything())
    	if err != nil {
    		return
    	}
    	reuseReqs, reuseLimits := make(v1.ResourceList, 4), make(v1.ResourceList, 4)
    	for _, p := range pods {
    		reqs, limits, terminal := podRequestsAndLimitsByLifecycle(p, reuseReqs, reuseLimits)
    		if terminal {
    			// terminal pods are excluded from resource usage calculations
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    		if !status.IsSuccess() {
    			return status.AsError()
    		}
    		return nil
    	}
    	// As the first step, remove all the lower priority pods from the node and
    	// check if the given pod can be scheduled.
    	podPriority := corev1helpers.PodPriority(pod)
    	for _, pi := range nodeInfo.Pods {
    		if corev1helpers.PodPriority(pi.Pod) < podPriority {
    			potentialVictims = append(potentialVictims, pi)
    			if err := removePod(pi); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    					},
    				},
    			},
    		},
    		Pods: []statsapi.PodStats{},
    	}
    	pods := []*v1.Pod{
    		podMaker("pod1", "ns1", "uuid1", 1),
    		podMaker("pod1", "ns2", "uuid2", 1),
    		podMaker("pod3", "ns3", "uuid3", 1),
    	}
    	podWorkingSetBytes := uint64(1024 * 1024 * 1024)
    	for _, pod := range pods {
    		fakeStats.Pods = append(fakeStats.Pods, newPodStats(pod, podWorkingSetBytes))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top