Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for InfoS (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		}
    
    		pageSize, err := v1helper.HugePageSizeFromResourceName(resourceObj)
    		if err != nil {
    			klog.InfoS("Failed to get hugepage size from resource", "object", resourceObj, "err", err)
    			continue
    		}
    
    		sizeString, err := v1helper.HugePageUnitSizeFromByteSize(pageSize.Value())
    		if err != nil {
    			klog.InfoS("Size is invalid", "object", resourceObj, "err", err)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    	for i, m := range monitors {
    		storageClusterID := fmt.Sprintf("etcd-%d", i)
    
    		klog.V(4).InfoS("Start collecting storage metrics", "storage_cluster_id", storageClusterID)
    		ctx, cancel := context.WithTimeout(context.Background(), time.Second)
    		metrics, err := m.Monitor(ctx)
    		cancel()
    		m.Close()
    		if err != nil {
    			klog.InfoS("Failed to get storage metrics", "storage_cluster_id", storageClusterID, "err", err)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pkg/kubelet/util/manager/watch_based_manager.go

    		// - doing that would require significant refactoring to reflector
    		// we limit ourselves to just quickly stop the reflector here.
    		if c.isImmutable(object) {
    			item.setImmutable()
    			if item.stop() {
    				klog.V(4).InfoS("Stopped watching for changes - object is immutable", "obj", klog.KRef(namespace, name))
    			}
    		}
    		return object, nil
    	}
    	return nil, fmt.Errorf("unexpected object type: %v", obj)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/kubelet/server/server.go

    	tlsOptions *TLSOptions,
    	auth AuthInterface,
    	tp oteltrace.TracerProvider) {
    
    	address := netutils.ParseIPSloppy(kubeCfg.Address)
    	port := uint(kubeCfg.Port)
    	klog.InfoS("Starting to listen", "address", address, "port", port)
    	handler := NewServer(host, resourceAnalyzer, auth, kubeCfg)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.KubeletTracing) {
    		handler.InstallTracingFilter(tp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top