Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for InfoS (0.34 sec)

  1. pkg/kubelet/cm/cpumanager/policy_static.go

    		p.updateCPUsToReuse(pod, container, cpuset)
    		klog.InfoS("Static policy: container already present in state, skipping", "pod", klog.KObj(pod), "containerName", container.Name)
    		return nil
    	}
    
    	// Call Topology Manager to get the aligned socket affinity across all hint providers.
    	hint := p.affinity.GetAffinity(string(pod.UID), container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    // only needs to update one StorageVersion for the equivalent Groups.
    func dedupResourceInfos(infos []ResourceInfo) []ResourceInfo {
    	var ret []ResourceInfo
    	seen := make(map[schema.GroupResource]struct{})
    	for _, info := range infos {
    		gr := info.GroupResource
    		if _, ok := seen[gr]; ok {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. pkg/kubelet/logs/container_log_manager.go

    	klog.V(4).InfoS("Starting container log rotation worker", "workerID", worker)
    	for c.processContainer(ctx, worker) {
    	}
    	klog.V(4).InfoS("Terminating container log rotation worker", "workerID", worker)
    }
    
    func (c *containerLogManager) rotateLogs(ctx context.Context) error {
    	c.mutex.Lock()
    	defer c.mutex.Unlock()
    	klog.V(4).InfoS("Starting container log rotation sequence")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    func (c *DynamicServingCertificateController) Run(workers int, stopCh <-chan struct{}) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting DynamicServingCertificateController")
    	defer klog.InfoS("Shutting down DynamicServingCertificateController")
    
    	// synchronously load once.  We will trigger again, so ignoring any error is fine
    	_ = c.RunOnce()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. 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)
  6. pkg/volume/util/hostutil/hostutil_linux.go

    	infos, err := mount.ParseMountInfo(mountInfoPath)
    	if err != nil {
    		return mount.MountInfo{}, err
    	}
    
    	// process /proc/xxx/mountinfo in backward order and find the first mount
    	// point that is prefix of 'path' - that's the mount where path resides
    	var info *mount.MountInfo
    	for i := len(infos) - 1; i >= 0; i-- {
    		if mount.PathWithinBase(path, infos[i].MountPoint) {
    			info = &infos[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. pkg/volume/configmap/configmap_test.go

    	infos, err := ioutil.ReadDir(volumePath)
    	if err != nil {
    		t.Fatalf("couldn't find volume path, %s", volumePath)
    	}
    	if len(infos) != 0 {
    		for _, fi := range infos {
    			if fi.Name() != "..data" && fi.Name() != datadir {
    				t.Errorf("empty data directory, %s, is not empty. Contains: %s", datadirSymlink, fi.Name())
    			}
    		}
    	}
    
    	infos, err = ioutil.ReadDir(datadirPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/cm/memorymanager/memory_manager.go

    			numaNodes.Insert(nodeID)
    		}
    	}
    
    	if numaNodes.Len() == 0 {
    		klog.V(5).InfoS("No allocation is available", "pod", klog.KObj(pod), "containerName", container.Name)
    		return nil
    	}
    
    	klog.InfoS("Memory affinity", "pod", klog.KObj(pod), "containerName", container.Name, "numaNodes", numaNodes)
    	return numaNodes
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  10. 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)
Back to top