Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for Dlog (0.08 sec)

  1. pkg/proxy/winkernel/proxier.go

    	if queriedEndpoints == nil {
    		klog.V(4).InfoS("No existing endpoints found in HNS")
    		queriedEndpoints = make(map[string]*(endpointInfo))
    	}
    	queriedLoadBalancers, err := hns.getAllLoadBalancers()
    	if queriedLoadBalancers == nil {
    		klog.V(4).InfoS("No existing load balancers found in HNS")
    		queriedLoadBalancers = make(map[loadBalancerIdentifier]*(loadBalancerInfo))
    	}
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    				}
    				if !suitable {
    					return statusUnschedulable(logger, "resourceclaim cannot be allocated for the node (unsuitable)", "pod", klog.KObj(pod), "node", klog.KObj(node), "resourceclaim", klog.KObj(claim))
    				}
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    	}()
    	logger := klog.FromContext(ctx)
    	verboseLogs := logger.V(4).Enabled()
    	if verboseLogs {
    		logger = klog.LoggerWithName(logger, "PreBind")
    		logger = klog.LoggerWithValues(logger, "node", klog.ObjectRef{Name: nodeName})
    	}
    	for _, pl := range f.preBindPlugins {
    		ctx := ctx
    		if verboseLogs {
    			logger := klog.LoggerWithName(logger, pl.Name())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller.go

    				podsToDelete = append(podsToDelete, oldestOldPod.Name)
    			case podutil.IsPodAvailable(oldestNewPod, ds.Spec.MinReadySeconds, metav1.Time{Time: dsc.failedPodsBackoff.Clock.Now()}):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		} else {
    			klog.V(4).InfoS("SyncPod received new pod, will create a sandbox for it", "pod", klog.KObj(pod))
    		}
    	}
    
    	// Step 2: Kill the pod if the sandbox has changed.
    	if podContainerChanges.KillPod {
    		if podContainerChanges.CreateSandbox {
    			klog.V(4).InfoS("Stopping PodSandbox for pod, will start new one", "pod", klog.KObj(pod))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    				oldObjMeta, newObjMeta, asErr := util.As[klog.KMetadata](oldObj, newObj)
    				if asErr != nil {
    					logger.Error(err, "QueueingHintFn returns error", "event", event, "plugin", hintfn.PluginName, "pod", klog.KObj(pod))
    				} else {
    					logger.Error(err, "QueueingHintFn returns error", "event", event, "plugin", hintfn.PluginName, "pod", klog.KObj(pod), "oldObj", klog.KObj(oldObjMeta), "newObj", klog.KObj(newObjMeta))
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("Updating updateClaimStatusWithEvent", "PVC", klog.KObj(claim), "setPhase", phase)
    	if claim.Status.Phase == phase {
    		// Nothing to do.
    		logger.V(4).Info("Updating updateClaimStatusWithEvent, phase already set", "PVC", klog.KObj(claim), "phase", phase)
    		return claim, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	secondaryEvictionLimiterQPS float32,
    	largeClusterThreshold int32,
    	unhealthyZoneThreshold float32,
    ) (*Controller, error) {
    	logger := klog.FromContext(ctx)
    	if kubeClient == nil {
    		logger.Error(nil, "kubeClient is nil when starting nodelifecycle Controller")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    
    	eventBroadcaster := record.NewBroadcaster(record.WithContext(ctx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// restartCount to be reset to 0. This causes the logfile to
    		// start at 0.log, which either overwrites or appends to the
    		// already existing log.
    		//
    		// We are checking to see if the log directory exists, and find
    		// the latest restartCount by checking the log name -
    		// {restartCount}.log - and adding 1 to it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    			if err := checkPermissions(); err != nil {
    				klog.ErrorS(err, "kubelet running with insufficient permissions")
    			}
    
    			// make the kubelet's config safe for logging
    			config := kubeletServer.KubeletConfiguration.DeepCopy()
    			for k := range config.StaticPodURLHeader {
    				config.StaticPodURLHeader[k] = []string{"<masked>"}
    			}
    			// log the kubelet's config for inspection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top