Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LoggerWithValues (0.21 sec)

  1. pkg/scheduler/schedule_one.go

    		return
    	}
    
    	pod := podInfo.Pod
    	// TODO(knelasevero): Remove duplicated keys from log entry calls
    	// When contextualized logging hits GA
    	// https://github.com/kubernetes/kubernetes/issues/111672
    	logger = klog.LoggerWithValues(logger, "pod", klog.KObj(pod))
    	ctx = klog.NewContext(ctx, logger)
    	logger.V(4).Info("About to try and schedule pod", "pod", klog.KObj(pod))
    
    	fwk, err := sched.frameworkForPod(pod)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	hostname string,
    	nodeIP net.IP,
    	recorder events.EventRecorder,
    	healthzServer *healthcheck.ProxierHealthServer,
    	nodePortAddressStrings []string,
    	initOnly bool,
    ) (*Proxier, error) {
    	logger := klog.LoggerWithValues(klog.FromContext(ctx), "ipFamily", ipFamily)
    
    	if initOnly {
    		logger.Info("System initialized and --init-only specified")
    		return nil, nil
    	}
    
    	// Generate the masquerade mark to use for SNAT rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top