Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for imageGCHighThresholdPercent (0.32 sec)

  1. pkg/kubelet/apis/config/types.go

    	// collected based on being unused for too long.
    	ImageMaximumGCAge metav1.Duration
    	// imageGCHighThresholdPercent is the percent of disk usage after which
    	// image garbage collection is always run. The percent is calculated as
    	// this field value out of 100.
    	ImageGCHighThresholdPercent int32
    	// imageGCLowThresholdPercent is the percent of disk usage before which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&c.ImageGCHighThresholdPercent, "image-gc-high-threshold", c.ImageGCHighThresholdPercent, "The percent of disk usage after which image garbage collection is always run. Values must be within the range [0, 100], To disable image garbage collection, set to 100. ")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// stub the image GC manager
    	if kl.kubeletConfiguration.ImageGCHighThresholdPercent == 100 &&
    		(!utilfeature.DefaultFeatureGate.Enabled(features.ImageMaximumGCAge) || kl.kubeletConfiguration.ImageMaximumGCAge.Duration == 0) {
    		klog.V(2).InfoS("ImageGCHighThresholdPercent is set 100 and ImageMaximumGCAge is 0, Disable image GC")
    		return
    	}
    
    	prevImageGCFailed := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
    						},
    					},
    					"imageGCHighThresholdPercent": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top