Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 183 for InfoS (0.31 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. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	}
    }
    
    // Run starts the controller and blocks until ctx is canceled.
    func (d *DynamicEncryptionConfigContent) Run(ctx context.Context) {
    	defer utilruntime.HandleCrash()
    
    	klog.InfoS("Starting controller", "name", d.name)
    	defer klog.InfoS("Shutting down controller", "name", d.name)
    
    	var wg sync.WaitGroup
    
    	wg.Add(1)
    	go func() {
    		defer utilruntime.HandleCrash()
    		defer wg.Done()
    		defer d.queue.ShutDown()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. pkg/registry/flowcontrol/ensurer/strategy.go

    			klog.V(2).InfoS(fmt.Sprintf("Successfully created %s", bootstrap.GetObjectKind().GroupVersionKind().Kind), "type", configurationType, "name", name)
    			return nil
    		}
    
    		if !apierrors.IsAlreadyExists(err) {
    			return fmt.Errorf("cannot create %s type=%s name=%q error=%w", bootstrap.GetObjectKind().GroupVersionKind().Kind, configurationType, name, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. 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)
  5. pkg/util/filesystem/util_windows.go

    		func() (bool, error) {
    			klog.V(6).InfoS("Dialing the socket", "filePath", filePath)
    			var c net.Conn
    			c, lastSocketErr = net.Dial("unix", filePath)
    			if lastSocketErr == nil {
    				c.Close()
    				klog.V(6).InfoS("Socket dialed successfully", "filePath", filePath)
    				return true, nil
    			}
    			klog.V(6).InfoS("Failed the current attempt to dial the socket, so pausing before retry",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    func Run(ctx context.Context, s *options.KubeletServer, kubeDeps *kubelet.Dependencies, featureGate featuregate.FeatureGate) error {
    	// To help debugging, immediately log version
    	klog.InfoS("Kubelet version", "kubeletVersion", version.Get())
    
    	klog.InfoS("Golang settings", "GOGC", os.Getenv("GOGC"), "GOMAXPROCS", os.Getenv("GOMAXPROCS"), "GOTRACEBACK", os.Getenv("GOTRACEBACK"))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/lifecycle/predicate.go

    		case *PredicateFailureError:
    			reason = re.PredicateName
    			message = re.Error()
    			klog.V(2).InfoS("Predicate failed on Pod", "pod", klog.KObj(admitPod), "err", message)
    		case *InsufficientResourceError:
    			reason = fmt.Sprintf("OutOf%s", re.ResourceName)
    			message = re.Error()
    			klog.V(2).InfoS("Predicate failed on Pod", "pod", klog.KObj(admitPod), "err", message)
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kubelet/kubelet.go

    	ctx := context.Background()
    	pod := runningPod.ToAPIPod()
    	klog.V(4).InfoS("SyncTerminatingRuntimePod enter", "pod", klog.KObj(pod), "podUID", pod.UID)
    	defer klog.V(4).InfoS("SyncTerminatingRuntimePod exit", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	// we kill the pod directly since we have lost all other information about the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top