Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for InfoS (0.15 sec)

  1. pkg/kubelet/kubelet_node_status.go

    		if err != nil {
    			klog.ErrorS(err, "Unable to construct v1.Node object for kubelet")
    			continue
    		}
    
    		klog.InfoS("Attempting to register node", "node", klog.KObj(node))
    		registered := kl.tryRegisterWithAPIServer(node)
    		if registered {
    			klog.InfoS("Successfully registered node", "node", klog.KObj(node))
    			kl.registrationCompleted = true
    			return
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/pod_devices.go

    		for k, v := range resp.Envs {
    			if e, ok := envsMap[k]; ok {
    				klog.V(4).InfoS("Skip existing env", "envKey", k, "envValue", v)
    				if e != v {
    					klog.ErrorS(nil, "Environment variable has conflicting setting", "envKey", k, "expected", v, "got", e)
    				}
    				continue
    			}
    			klog.V(4).InfoS("Add env", "envKey", k, "envValue", v)
    			envsMap[k] = v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_volumes.go

    	if err != nil {
    		klog.ErrorS(err, "Pod found, but error occurred during checking mounted volumes from disk", "podUID", podUID)
    		return true
    	}
    	if len(volumePaths) > 0 {
    		klog.V(4).InfoS("Pod found, but volumes are still mounted on disk", "podUID", podUID, "paths", volumePaths)
    		return true
    	}
    
    	return false
    }
    
    // newVolumeMounterFromPlugins attempts to find a plugin by volume spec, pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager.go

    	klog.V(2).InfoS("Starting Device Plugin manager")
    
    	m.activePods = activePods
    	m.sourcesReady = sourcesReady
    	m.containerMap = initialContainers
    	m.containerRunningSet = initialContainerRunningSet
    
    	// Loads in allocatedDevices information from disk.
    	err := m.readCheckpoint()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_linux.go

    		}
    		klog.InfoS("Container manager verified user specified cgroup-root exists", "cgroupRoot", cgroupRoot)
    		// Include the top level cgroup for enforcing node allocatable into cgroup-root.
    		// This way, all sub modules can avoid having to understand the concept of node allocatable.
    		cgroupRoot = NewCgroupName(cgroupRoot, defaultNodeAllocatableCgroupName)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. cmd/erasure.go

    			infos[i] = di
    			if err != nil {
    				// - Do not consume disks which are not reachable
    				//   unformatted or simply not accessible for some reason.
    				infos[i].Error = err.Error()
    			}
    		}()
    	}
    	wg.Wait()
    
    	var scanningDisks, healingDisks []StorageAPI
    	var scanningInfos, healingInfos []DiskInfo
    
    	for i, info := range infos {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/kubelet/config/config.go

    		if update.Op == kubetypes.ADD {
    			klog.V(4).InfoS("Adding new pods from source", "source", source, "pods", klog.KObjSlice(update.Pods))
    		} else if update.Op == kubetypes.DELETE {
    			klog.V(4).InfoS("Gracefully deleting pods from source", "source", source, "pods", klog.KObjSlice(update.Pods))
    		} else {
    			klog.V(4).InfoS("Updating pods from source", "source", source, "pods", klog.KObjSlice(update.Pods))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/evented.go

    			}
    		} else {
    			if klogV := klog.V(6); klogV.Enabled() {
    				klogV.InfoS("Evented PLEG: Generated pod status from the received event", "podUID", podID, "podStatus", status)
    			} else {
    				klog.V(4).InfoS("Evented PLEG: Generated pod status from the received event", "podUID", podID)
    			}
    			// Preserve the pod IP across cache updates if the new IP is empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    					// once https://github.com/kubernetes/kubernetes/issues/63336 is resolved
    					klog.InfoS("Error getting ContainerStatus for containerID", "containerID", containerID, "err", err)
    				} else {
    					status := resp.GetStatus()
    					if status == nil {
    						klog.V(4).InfoS("Container status is nil")
    						continue
    					}
    					if status.State != runtimeapi.ContainerState_CONTAINER_EXITED {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	klog.InfoS("Desired state populator starts to run")
    	wait.PollUntil(dswp.loopSleepDuration, func() (bool, error) {
    		done := sourcesReady.AllReady()
    		dswp.populatorLoop()
    		return done, nil
    	}, stopCh)
    	dswp.hasAddedPodsLock.Lock()
    	if !dswp.hasAddedPods {
    		klog.InfoS("Finished populating initial desired state of world")
    		dswp.hasAddedPods = true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top