Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,731 for Dlog (0.05 sec)

  1. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	return true
    }
    
    func (c *Controller) processPVC(ctx context.Context, pvcNamespace, pvcName string) error {
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("Processing PVC", "PVC", klog.KRef(pvcNamespace, pvcName))
    	startTime := time.Now()
    	defer func() {
    		logger.V(4).Info("Finished processing PVC", "PVC", klog.KRef(pvcNamespace, pvcName), "duration", time.Since(startTime))
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    		simpleMsg, detailedMsg := volumeToMount.GenerateMsg("MapVolume.MapPodDevice succeeded", fmt.Sprintf("globalMapPath %q", globalMapPath))
    		verbosity := klog.Level(4)
    		og.recorder.Eventf(volumeToMount.Pod, v1.EventTypeNormal, kevents.SuccessfulMountVolume, simpleMsg)
    		klog.V(verbosity).InfoS(detailedMsg, "pod", klog.KObj(volumeToMount.Pod))
    
    		// Device mapping for pod device map path succeeded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/etcd/etcd.go

    	for i := 0; i < retries; i++ {
    		if i > 0 {
    			klog.V(1).Infof("[etcd] Waiting %v until next retry\n", retryInterval)
    			time.Sleep(retryInterval)
    		}
    		klog.V(2).Infof("[etcd] attempting to see if all cluster endpoints (%s) are available %d/%d", c.Endpoints, i+1, retries)
    		_, err := c.getClusterStatus()
    		if err != nil {
    			switch err {
    			case context.DeadlineExceeded:
    				klog.V(1).Infof("[etcd] Attempt timed out")
    			default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/plugin/v1beta1/handler.go

    		f.Close()
    		klog.V(4).InfoS("Created deprecation file", "path", f.Name())
    	}
    	return s
    }
    
    func (s *server) RegisterPlugin(pluginName string, endpoint string, versions []string, pluginClientTimeout *time.Duration) error {
    	klog.V(2).InfoS("Registering plugin at endpoint", "plugin", pluginName, "endpoint", endpoint)
    	return s.connectClient(pluginName, endpoint)
    }
    
    func (s *server) DeRegisterPlugin(pluginName string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/statusupdater/node_status_updater.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/controller/volume/attachdetach/cache"
    )
    
    // NodeStatusUpdater defines a set of operations for updating the
    // VolumesAttached field in the Node Status.
    type NodeStatusUpdater interface {
    	// Gets a list of node statuses that should be updated from the actual state
    	// of the world and updates them.
    	UpdateNodeStatuses(logger klog.Logger) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. releasenotes/notes/fix-revision-admin-log.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
        **Added** `revision` flag to admin log to switch controls between Istiods.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 15 19:59:34 UTC 2022
    - 302 bytes
    - Viewed (0)
  7. releasenotes/notes/access-log-service-crash.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 30939
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 19 05:25:55 UTC 2021
    - 182 bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/cleanup.go

    			}
    		}
    	}
    
    	klog.V(4).InfoS("Deleting conntrack stale entries for services", "IPs", conntrackCleanupServiceIPs.UnsortedList())
    	for _, svcIP := range conntrackCleanupServiceIPs.UnsortedList() {
    		if err := ct.ClearEntriesForIP(svcIP, v1.ProtocolUDP); err != nil {
    			klog.ErrorS(err, "Failed to delete stale service connections", "IP", svcIP)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		} else {
    			klog.V(4).InfoS("SyncPod received new pod, will create a sandbox for it", "pod", klog.KObj(pod))
    		}
    	}
    
    	// Step 2: Kill the pod if the sandbox has changed.
    	if podContainerChanges.KillPod {
    		if podContainerChanges.CreateSandbox {
    			klog.V(4).InfoS("Stopping PodSandbox for pod, will start new one", "pod", klog.KObj(pod))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. 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)
Back to top