Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 124 for InfoS (0.03 sec)

  1. pkg/proxy/conntrack/conntrack.go

    		return fmt.Errorf("error looking for path of conntrack: %v", err)
    	}
    	klog.V(4).InfoS("Clearing conntrack entries", "parameters", parameters)
    	output, err := ct.execer.Command(conntrackPath, parameters...).CombinedOutput()
    	if err != nil {
    		return fmt.Errorf("conntrack command returned: %q, error message: %s", string(output), err)
    	}
    	klog.V(4).InfoS("Conntrack entries deleted", "output", string(output))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K 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/reconciler.go

    limitations under the License.
    */
    
    package reconciler
    
    import (
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    )
    
    func (rc *reconciler) Run(stopCh <-chan struct{}) {
    	rc.reconstructVolumes()
    	klog.InfoS("Reconciler: start to sync state")
    	wait.Until(rc.reconcile, rc.loopSleepDuration, stopCh)
    }
    
    func (rc *reconciler) reconcile() {
    	readyToUnmount := rc.readyToUnmount()
    	if readyToUnmount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	if err != nil {
    		return "", err
    	}
    
    	imgSpec := toRuntimeAPIImageSpec(image)
    
    	creds, withCredentials := keyring.Lookup(repoToPull)
    	if !withCredentials {
    		klog.V(3).InfoS("Pulling image without credentials", "image", img)
    
    		imageRef, err := m.imageService.PullImage(ctx, imgSpec, nil, podSandboxConfig)
    		if err != nil {
    			klog.ErrorS(err, "Failed to pull image", "image", img)
    			return "", err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator.go

    					if len(message) > celconfig.MaxEvaluatedMessageExpressionSizeBytes {
    						klog.V(2).InfoS("excessively long message denied", "message", message)
    						message = ""
    					}
    					// deny message that contains newlines
    					if strings.ContainsAny(message, "\n") {
    						klog.V(2).InfoS("multi-line message denied", "message", message)
    						message = ""
    					}
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_progress.go

    			}()
    			if !shouldRequest {
    				timer.Reset(0)
    				continue
    			}
    			timer.Reset(progressRequestPeriod)
    			err := pr.requestWatchProgress(ctx)
    			if err != nil {
    				klog.V(4).InfoS("Error requesting bookmark", "err", err)
    			}
    		case <-stopCh:
    			return
    		}
    	}
    }
    
    func (pr *conditionalProgressRequester) Add() {
    	pr.mux.Lock()
    	defer pr.mux.Unlock()
    	pr.waiting += 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 09:56:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    				fsGroupChangePolicy = podSc.FSGroupChangePolicy
    			}
    		}
    
    		devicePath := volumeToMount.DevicePath
    		if volumeAttacher != nil {
    			// Wait for attachable volumes to finish attaching
    			klog.InfoS(volumeToMount.GenerateMsgDetailed("MountVolume.WaitForAttach entering", fmt.Sprintf("DevicePath %q", volumeToMount.DevicePath)), "pod", klog.KObj(volumeToMount.Pod))
    
    			devicePath, err = volumeAttacher.WaitForAttach(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. 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)
Back to top