Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 523 for slog (0.04 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    			return false, true, nil
    		}
    		logger.V(5).Info("PersistentVolume and node matches for pod", "PV", klog.KRef("", pvName), "node", klog.KObj(node), "pod", klog.KObj(pod))
    	}
    
    	logger.V(4).Info("All bound volumes for pod match with node", "pod", klog.KObj(pod), "node", klog.KObj(node))
    	return true, true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pkg/proxy/node.go

    			"node", klog.KObj(node), "newPodCIDRs", podCIDRs, "oldPODCIDRs", n.podCIDRs)
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    }
    
    // OnNodeDelete is a handler for Node deletes.
    func (n *NodePodCIDRHandler) OnNodeDelete(node *v1.Node) {
    	n.logger.Error(nil, "Current Node is being deleted", "node", klog.KObj(node))
    }
    
    // OnNodeSynced is a handler for Node syncs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    	if queriedEndpoints == nil {
    		klog.V(4).InfoS("No existing endpoints found in HNS")
    		queriedEndpoints = make(map[string]*(endpointInfo))
    	}
    	queriedLoadBalancers, err := hns.getAllLoadBalancers()
    	if queriedLoadBalancers == nil {
    		klog.V(4).InfoS("No existing load balancers found in HNS")
    		queriedLoadBalancers = make(map[loadBalancerIdentifier]*(loadBalancerInfo))
    	}
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	}
    	certsDir := r.CertificatesDir()
    
    	// Try to stop the kubelet service
    	klog.V(1).Infoln("[reset] Getting init system")
    	initSystem, err := initsystem.GetInitSystem()
    	if err != nil {
    		klog.Warningln("[reset] The kubelet service could not be stopped by kubeadm. Unable to detect a supported init system!")
    		klog.Warningln("[reset] Please ensure kubelet is stopped manually")
    	} else {
    		if !r.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/graph_populator.go

    	pod, ok := obj.(*corev1.Pod)
    	if !ok {
    		klog.Infof("unexpected type %T", obj)
    		return
    	}
    	if len(pod.Spec.NodeName) == 0 {
    		klog.V(5).Infof("deletePod %s/%s, no node", pod.Namespace, pod.Name)
    		return
    	}
    
    	klog.V(4).Infof("deletePod %s/%s for node %s", pod.Namespace, pod.Name, pod.Spec.NodeName)
    	startTime := time.Now()
    	g.graph.DeletePod(pod.Name, pod.Namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	}
    	if err == nil {
    		if remountingLogStr == "" {
    			klog.V(1).InfoS(volumeToMount.GenerateMsgDetailed("operationExecutor.MountVolume started", remountingLogStr), "pod", klog.KObj(volumeToMount.Pod))
    		} else {
    			klog.V(5).InfoS(volumeToMount.GenerateMsgDetailed("operationExecutor.MountVolume started", remountingLogStr), "pod", klog.KObj(volumeToMount.Pod))
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. staging/publishing/import-restrictions.yaml

      - k8s.io/apimachinery
      - k8s.io/kube-openapi
      - k8s.io/utils/clock
      - k8s.io/utils/net
      - k8s.io/utils/strings
      - k8s.io/klog
      - k8s.io/utils/ptr
    
    - baseImportPath: "./staging/src/k8s.io/api"
      allowedImports:
      - k8s.io/api
      - k8s.io/apimachinery
      - k8s.io/klog
    
    - baseImportPath: "./staging/src/k8s.io/code-generator"
      ignoredSubTrees:
      - "./staging/src/k8s.io/code-generator/examples"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    				"pod", klog.KObj(pod), "createdPod", klog.KObj(modifiedPod))
    			return framework.Queue, nil
    		}
    		logger.V(5).Info("a scheduled pod was created, but it doesn't matches with the pod's topology spread constraints",
    			"pod", klog.KObj(pod), "createdPod", klog.KObj(modifiedPod))
    		return framework.QueueSkip, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_plugin.go

    	klog.V(4).Info(log("mounter created successfully"))
    	return mounter, nil
    }
    
    func (p *csiPlugin) NewUnmounter(specName string, podUID types.UID) (volume.Unmounter, error) {
    	klog.V(4).Infof(log("setting up unmounter for [name=%v, podUID=%v]", specName, podUID))
    
    	kvh, ok := p.host.(volume.KubeletVolumeHost)
    	if !ok {
    		return nil, errors.New(log("cast from VolumeHost to KubeletVolumeHost failed"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/node_authorizer.go

    		//ok
    	default:
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    		return authorizer.DecisionNoOpinion, "can only read resources of this type", nil
    	}
    
    	if len(attrs.GetSubresource()) > 0 {
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    		return authorizer.DecisionNoOpinion, "cannot read subresource", nil
    	}
    	if len(attrs.GetNamespace()) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top