Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 395 for podutil (0.13 sec)

  1. pkg/registry/core/pod/storage/storage.go

    			pod.Annotations[k] = v
    		}
    		podutil.UpdatePodCondition(&pod.Status, &api.PodCondition{
    			Type:   api.PodScheduled,
    			Status: api.ConditionTrue,
    		})
    		finalPod = pod
    		return pod, nil
    	}), dryRun, nil)
    	return finalPod, err
    }
    
    // assignPod assigns the given pod to the given machine.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set.go

    		// the Pod status which in turn will trigger a requeue of the owning replica set thus
    		// having its status updated with the newly available replica.
    		if !podutil.IsPodReady(oldPod) && podutil.IsPodReady(curPod) && set.Spec.MinReadySeconds > 0 {
    			logger.V(2).Info("StatefulSet will be enqueued after minReadySeconds for availability check", "statefulSet", klog.KObj(set), "minReadySeconds", set.Spec.MinReadySeconds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    		// a Pod transitioned to Ready.
    		// Note that this still suffers from #29229, we are just moving the problem one level
    		// "closer" to kubelet (from the deployment to the replica set controller).
    		if !podutil.IsPodReady(oldPod) && podutil.IsPodReady(curPod) && rs.Spec.MinReadySeconds > 0 {
    			logger.V(2).Info("pod will be enqueued after a while for availability check", "duration", rs.Spec.MinReadySeconds, "kind", rsc.Kind, "pod", klog.KObj(oldPod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/types.go

    		ContainerFn: func(requests v1.ResourceList, containerType podutil.ContainerType) {
    			non0CPUReq, non0MemReq := schedutil.GetNonzeroRequests(&requests)
    			switch containerType {
    			case podutil.Containers:
    				non0CPU += non0CPUReq
    				non0Mem += non0MemReq
    			case podutil.InitContainers:
    				non0InitCPU = max(non0InitCPU, non0CPUReq)
    				non0InitMem = max(non0InitMem, non0MemReq)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  5. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    import (
    	"fmt"
    	"path/filepath"
    	"sort"
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/klog/v2"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/apis/scheduling"
    	"k8s.io/kubernetes/pkg/features"
    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    	kubeletevents "k8s.io/kubernetes/pkg/kubelet/events"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    	syncer.SetPodStatus(pod, anotherStatus)
    	verifyUpdates(t, syncer, 1)
    	newStatus := expectPodStatus(t, syncer, pod)
    
    	oldReadyCondition := podutil.GetPodReadyCondition(oldStatus)
    	newReadyCondition := podutil.GetPodReadyCondition(newStatus)
    	if newReadyCondition.LastTransitionTime.IsZero() {
    		t.Errorf("Unexpected: last transition time not set")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	var cID string
    
    	cStatus, found := podutil.GetContainerStatus(podStatus.ContainerStatuses, containerName)
    	if !found {
    		cStatus, found = podutil.GetContainerStatus(podStatus.InitContainerStatuses, containerName)
    	}
    	if !found {
    		cStatus, found = podutil.GetContainerStatus(podStatus.EphemeralContainerStatuses, containerName)
    	}
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils.go

    func isRunningAndReady(pod *v1.Pod) bool {
    	return pod.Status.Phase == v1.PodRunning && podutil.IsPodReady(pod)
    }
    
    func isRunningAndAvailable(pod *v1.Pod, minReadySeconds int32) bool {
    	return podutil.IsPodAvailable(pod, minReadySeconds, metav1.Now())
    }
    
    // isCreated returns true if pod has been created and is maintained by the API server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/endpoints_controller.go

    	"k8s.io/client-go/tools/record"
    	"k8s.io/client-go/util/workqueue"
    	endpointsliceutil "k8s.io/endpointslice/util"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/api/v1/endpoints"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/controller"
    	utillabels "k8s.io/kubernetes/pkg/util/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. pkg/kubelet/util/manager/cache_based_manager_test.go

    	return podWithSecretsAndUID(ns, podName, fmt.Sprintf("%s/%s", ns, podName), toAttach)
    }
    
    func podWithSecretsAndUID(ns, podName, podUID string, toAttach secretsToAttach) *v1.Pod {
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: ns,
    			Name:      podName,
    			UID:       types.UID(podUID),
    		},
    		Spec: v1.PodSpec{},
    	}
    	for _, name := range toAttach.imagePullSecretNames {
    		pod.Spec.ImagePullSecrets = append(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top