Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 232 for podB (0.05 sec)

  1. pkg/scheduler/framework/types.go

    func (pi *PodInfo) Update(pod *v1.Pod) error {
    	if pod != nil && pi.Pod != nil && pi.Pod.UID == pod.UID {
    		// PodInfo includes immutable information, and so it is safe to update the pod in place if it is
    		// the exact same pod
    		pi.Pod = pod
    		return nil
    	}
    	var preferredAffinityTerms []v1.WeightedPodAffinityTerm
    	var preferredAntiAffinityTerms []v1.WeightedPodAffinityTerm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/values.yaml

          # Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
          deletePods: false
          # repairPods will dynamically repair any broken pod by setting up the pod networking configuration even after it has started.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    	}
    
    	return containerMemories
    }
    
    func (cm *containerManagerImpl) PrepareDynamicResources(pod *v1.Pod) error {
    	return cm.draManager.PrepareResources(pod)
    }
    
    func (cm *containerManagerImpl) UnprepareDynamicResources(pod *v1.Pod) error {
    	return cm.draManager.UnprepareResources(pod)
    }
    
    func (cm *containerManagerImpl) PodMightNeedToUnprepareResources(UID types.UID) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/qos_container_manager_linux.go

    	pods := m.activePods()
    	burstablePodCPURequest := int64(0)
    	reuseReqs := make(v1.ResourceList, 4)
    	for i := range pods {
    		pod := pods[i]
    		qosClass := v1qos.GetPodQOS(pod)
    		if qosClass != v1.PodQOSBurstable {
    			// we only care about the burstable qos tier
    			continue
    		}
    		req := resource.PodRequests(pod, resource.PodResourcesOptions{Reuse: reuseReqs})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set.go

    	// List all pods to include the pods that don't match the selector anymore but
    	// has a ControllerRef pointing to this StatefulSet.
    	pods, err := ssc.podLister.Pods(set.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    
    	filter := func(pod *v1.Pod) bool {
    		// Only claim if it matches our StatefulSet name. Otherwise release/ignore.
    		return isMemberOf(set, pod)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_waypoint.go

    			OriginalDstLbConfig: &cluster.Cluster_OriginalDstLbConfig{
    				UpstreamPortOverride: &wrappers.UInt32Value{
    					Value: model.HBoneInboundListenPort,
    				},
    				// Used to override destination pods with waypoints.
    				MetadataKey: &metadata.MetadataKey{
    					Key: util.OriginalDstMetadataKey,
    					Path: []*metadata.MetadataKey_PathSegment{{
    						Segment: &metadata.MetadataKey_PathSegment_Key{
    							Key: "waypoint",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    }
    
    // SyncHandler is an interface implemented by Kubelet, for testability
    type SyncHandler interface {
    	HandlePodAdditions(pods []*v1.Pod)
    	HandlePodUpdates(pods []*v1.Pod)
    	HandlePodRemoves(pods []*v1.Pod)
    	HandlePodReconcile(pods []*v1.Pod)
    	HandlePodSyncs(pods []*v1.Pod)
    	HandlePodCleanups(ctx context.Context) error
    }
    
    // Option is a functional option type for Kubelet
    type Option func(*Kubelet)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    	case api.PodSucceeded:
    		row.Conditions = podSuccessConditions
    	case api.PodFailed:
    		row.Conditions = podFailedConditions
    	}
    
    	initContainers := make(map[string]*api.Container)
    	for i := range pod.Spec.InitContainers {
    		initContainers[pod.Spec.InitContainers[i].Name] = &pod.Spec.InitContainers[i]
    		if isRestartableInitContainer(&pod.Spec.InitContainers[i]) {
    			totalContainers++
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    // an actual pod condition type.
    type PodFailurePolicyOnPodConditionsPattern struct {
    	// Specifies the required Pod condition type. To match a pod condition
    	// it is required that specified type equals the pod condition type.
    	Type api.PodConditionType
    	// Specifies the required Pod condition status. To match a pod condition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"type":   "Specifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type.",
    	"status": "Specifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top