Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,192 for slog (0.06 sec)

  1. pkg/serviceaccount/legacy.go

    		secret, err := v.getter.GetSecret(namespace, secretName)
    		if err != nil {
    			klog.V(4).Infof("Could not retrieve token %s/%s for service account %s/%s: %v", namespace, secretName, namespace, serviceAccountName, err)
    			return nil, errors.New("Token has been invalidated")
    		}
    		if secret.DeletionTimestamp != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/pod_devices.go

    		// Updates RunContainerOptions.Envs.
    		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/controller/podgc/gc_controller.go

    }
    
    func (gcc *PodGCController) gc(ctx context.Context) {
    	pods, err := gcc.podLister.List(labels.Everything())
    	if err != nil {
    		klog.FromContext(ctx).Error(err, "Error while listing all pods")
    		return
    	}
    	nodes, err := gcc.nodeLister.List(labels.Everything())
    	if err != nil {
    		klog.FromContext(ctx).Error(err, "Error while listing all nodes")
    		return
    	}
    	if gcc.terminatedPodThreshold > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    	if err != nil {
    		klog.ErrorS(err, "ListAndWatch ended unexpectedly for device plugin", "resource", c.resource)
    		return
    	}
    
    	for {
    		response, err := stream.Recv()
    		if err != nil {
    			klog.ErrorS(err, "ListAndWatch ended unexpectedly for device plugin", "resource", c.resource)
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. pkg/volume/util/volumepathhandler/volume_path_handler.go

    	}
    	if !filepath.IsAbs(mapPath) {
    		return fmt.Errorf("the map path should be absolute: map path: %s", mapPath)
    	}
    	klog.V(5).Infof("MapDevice: devicePath %s", devicePath)
    	klog.V(5).Infof("MapDevice: mapPath %s", mapPath)
    	klog.V(5).Infof("MapDevice: linkName %s", linkName)
    
    	// Check and create mapPath
    	_, err := os.Stat(mapPath)
    	if err != nil && !os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/evented.go

    		if err != nil {
    			// nolint:logcheck // Not using the result of klog.V inside the
    			// if branch is okay, we just use it to determine whether the
    			// additional "podStatus" key and its value should be added.
    			if klog.V(6).Enabled() {
    				klog.ErrorS(err, "Evented PLEG: error generating pod status from the received event", "podUID", podID, "podStatus", status)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. pkg/registry/rbac/rest/storage_rbac.go

    				return err
    			}
    			switch {
    			case result.Protected && result.Operation != reconciliation.ReconcileNone:
    				klog.Warningf("skipped reconcile-protected clusterrole.%s/%s with missing permissions: %v", rbac.GroupName, clusterRole.Name, result.MissingRules)
    			case result.Operation == reconciliation.ReconcileUpdate:
    				klog.V(2).Infof("updated clusterrole.%s/%s with additional permissions: %v", rbac.GroupName, clusterRole.Name, result.MissingRules)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status.go

    		}
    
    		node, err := kl.initialNode(context.TODO())
    		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)
  9. pkg/volume/fc/disk_manager.go

    	if err != nil {
    		klog.Errorf("Failed to bind mount: source:%s, target:%s, err:%v", globalPDPath, volPath, err)
    		noMnt, mntErr := b.mounter.IsLikelyNotMountPoint(volPath)
    		if mntErr != nil {
    			klog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
    			return err
    		}
    		if !noMnt {
    			if mntErr = b.mounter.Unmount(volPath); mntErr != nil {
    				klog.Errorf("Failed to unmount: %v", mntErr)
    				return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_manager.go

    			if _, ok := m.workers[key]; ok {
    				klog.V(8).ErrorS(nil, "Startup probe already exists for container",
    					"pod", klog.KObj(pod), "containerName", c.Name)
    				return
    			}
    			w := newWorker(m, startup, pod, c)
    			m.workers[key] = w
    			go w.run()
    		}
    
    		if c.ReadinessProbe != nil {
    			key.probeType = readiness
    			if _, ok := m.workers[key]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top