Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for recorder (0.45 sec)

  1. pkg/kubelet/kubelet.go

    		Logger:                           logger,
    		ProbeManager:                     klet.probeManager,
    		Recorder:                         kubeDeps.Recorder,
    		NodeRef:                          nodeRef,
    		GetPodsFunc:                      klet.GetActivePods,
    		KillPodFunc:                      killPodNow(klet.podWorkers, kubeDeps.Recorder),
    		SyncNodeStatusFunc:               klet.syncNodeStatus,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    				},
    			},
    		},
    	}}
    
    	recorder := record.NewFakeRecorder(20)
    	nodeRef := &v1.ObjectReference{
    		Kind:      "Node",
    		Name:      "testNode",
    		UID:       types.UID("testNode"),
    		Namespace: "",
    	}
    	testClusterDNSDomain := "TEST"
    	kl.dnsConfigurer = dns.NewConfigurer(recorder, nodeRef, nil, nil, testClusterDNSDomain, "")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			orphanCount++
    		}
    	}
    	metrics.OrphanedRuntimePodTotal.Add(float64(orphanCount))
    
    	// Now that we have recorded any terminating pods, and added new pods that should be running,
    	// record a summary here. Not all possible combinations of PodWorkerSync values are valid.
    	counts := make(map[PodWorkerSync]int)
    	for _, sync := range workingPods {
    		counts[sync]++
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    INFO:     Will watch for changes in these directories: ['/home/user/code/awesomeapp']
    INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    INFO:     Started reloader process [2248755] using WatchFiles
    INFO:     Started server process [2248757]
    INFO:     Waiting for application startup.
    INFO:     Application startup complete.
    ```
    
    ### Refactors
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top