Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PodAndContainerStatsFromCRI (0.28 sec)

  1. pkg/features/kube_features.go

    	// Requires the CRI implementation supports supplying the required stats.
    	PodAndContainerStatsFromCRI featuregate.Feature = "PodAndContainerStatsFromCRI"
    
    	// owner: @ahg-g
    	// alpha: v1.21
    	// beta: v1.22
    	//
    	// Enables controlling pod ranking on replicaset scale-down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    	r := compbasemetrics.NewKubeRegistry()
    	r.RawMustRegister(metrics.NewPrometheusMachineCollector(prometheusHostAdapter{s.host}, includedMetrics))
    	if utilfeature.DefaultFeatureGate.Enabled(features.PodAndContainerStatsFromCRI) {
    		r.CustomRegister(collectors.NewCRIMetricsCollector(context.TODO(), s.host.ListPodSandboxMetrics, s.host.ListMetricDescriptors))
    	} else {
    		cadvisorOpts := cadvisorv2.RequestOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

       ([#122068](https://github.com/kubernetes/kubernetes/pull/122068), [@caohe](https://github.com/caohe))
    - Fixed an issue where `AvailableBytes` sometimes did not report correctly on WindowsNodes when the `PodAndContainerStatsFromCRI` feature was enabled.
       ([#122846](https://github.com/kubernetes/kubernetes/pull/122846), [@marosset](https://github.com/marosset))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    			klet.podManager,
    			klet.runtimeCache,
    			kubeDeps.RemoteRuntimeService,
    			kubeDeps.RemoteImageService,
    			hostStatsProvider,
    			utilfeature.DefaultFeatureGate.Enabled(features.PodAndContainerStatsFromCRI))
    	}
    
    	eventChannel := make(chan *pleg.PodLifecycleEvent, plegChannelCapacity)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.EventedPLEG) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top