Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for InfoS (0.08 sec)

  1. pkg/kubelet/volumemanager/volume_manager.go

    	}
    
    	go vm.desiredStateOfWorldPopulator.Run(sourcesReady, stopCh)
    	klog.V(2).InfoS("The desired_state_of_world populator starts")
    
    	klog.InfoS("Starting Kubelet Volume Manager")
    	go vm.reconciler.Run(stopCh)
    
    	metrics.Register(vm.actualStateOfWorld, vm.desiredStateOfWorld, vm.volumePluginMgr)
    
    	<-stopCh
    	klog.InfoS("Shutting down Kubelet Volume Manager")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/generic.go

    						klog.V(2).InfoS("Generic (PLEG): container finished", "podID", pod.ID, "containerID", containerID, "exitCode", exitCode)
    					}
    				}
    			}
    		}
    	}
    
    	if g.cacheEnabled() {
    		// reinspect any pods that failed inspection during the previous relist
    		if len(g.podsToReinspect) > 0 {
    			klog.V(5).InfoS("GenericPLEG: Reinspecting pods that previously failed inspection")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters.go

    				return fmt.Errorf("failed to validate nodeIP: %v", err)
    			}
    			klog.V(4).InfoS("Using node IP", "IP", nodeIP.String())
    		}
    		if secondaryNodeIPSpecified {
    			if err := validateNodeIPFunc(secondaryNodeIP); err != nil {
    				return fmt.Errorf("failed to validate secondaryNodeIP: %v", err)
    			}
    			klog.V(4).InfoS("Using secondary node IP", "IP", secondaryNodeIP.String())
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/labels.go

    	if value, found := labels[label]; found {
    		return value
    	}
    	// Do not report error, because there should be many old containers without label now.
    	klog.V(3).InfoS("Container doesn't have requested label, it may be an old or invalid container", "label", label)
    	// Return empty string "" for these containers, the caller will get value by other ways.
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    		if err != nil {
    			message := fmt.Sprintf("Failed to create sandbox for pod %q: %v", format.Pod(pod), err)
    			return "", message, err
    		}
    		if runtimeHandler != "" {
    			klog.V(2).InfoS("Running pod with runtime handler", "pod", klog.KObj(pod), "runtimeHandler", runtimeHandler)
    		}
    	}
    
    	podSandBoxID, err := m.runtimeService.RunPodSandbox(ctx, podSandboxConfig, runtimeHandler)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		httpServerStoppedListeningCh.Signal()
    		klog.V(1).InfoS("[graceful-termination] shutdown event", "name", httpServerStoppedListeningCh.Name())
    	}()
    
    	// we don't accept new request as soon as both ShutdownDelayDuration has
    	// elapsed and preshutdown hooks have completed.
    	preShutdownHooksHasStoppedCh := s.lifecycleSignals.PreShutdownHooksStopped
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/manager.go

    				}
    
    				claimAnnotations := claimInfo.annotationsAsList()
    				klog.V(3).InfoS("Add resource annotations", "claim", *claimName, "annotations", claimAnnotations)
    				annotations = append(annotations, claimAnnotations...)
    
    				devices := claimInfo.cdiDevicesAsList()
    				klog.V(3).InfoS("Add CDI devices", "claim", *claimName, "CDI devices", devices)
    				cdiDevices = append(cdiDevices, devices...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    	if gvi.podVolumes == nil {
    		gvi.podVolumes = map[volumetypes.UniquePodName]*reconstructedVolume{}
    	}
    	gvi.podVolumes[rcv.podName] = rcv
    }
    
    func (rc *reconciler) cleanupMounts(volume podVolume) {
    	klog.V(2).InfoS("Reconciler sync states: could not find volume information in desired state, clean up the mount points", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
    	mountedVolume := operationexecutor.MountedVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/kubelet/container/helpers.go

    	if pod.Spec.RestartPolicy == v1.RestartPolicyNever {
    		klog.V(4).InfoS("Already ran container, do nothing", "pod", klog.KObj(pod), "containerName", container.Name)
    		return false
    	}
    	if pod.Spec.RestartPolicy == v1.RestartPolicyOnFailure {
    		// Check the exit code.
    		if status.ExitCode == 0 {
    			klog.V(4).InfoS("Already successfully ran container, do nothing", "pod", klog.KObj(pod), "containerName", container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. pkg/kubelet/volume_host.go

    		csiDriverInformer := informerFactory.Storage().V1().CSIDrivers()
    		csiDriverLister = csiDriverInformer.Lister()
    		csiDriversSynced = csiDriverInformer.Informer().HasSynced
    
    	} else {
    		klog.InfoS("KubeClient is nil. Skip initialization of CSIDriverLister")
    	}
    
    	kvh := &kubeletVolumeHost{
    		kubelet:                   kubelet,
    		volumePluginMgr:           volume.VolumePluginMgr{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top