Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for EvictionSoftGracePeriod (0.56 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    		evictionSoft            map[string]string
    		evictionSoftGracePeriod map[string]string
    		evictionMinReclaim      map[string]string
    		expectErr               bool
    		expectThresholds        []evictionapi.Threshold
    	}{
    		"no values": {
    			allocatableConfig:       []string{},
    			evictionHard:            map[string]string{},
    			evictionSoft:            map[string]string{},
    			evictionSoftGracePeriod: map[string]string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    		in, out := &in.EvictionSoft, &out.EvictionSoft
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.EvictionSoftGracePeriod != nil {
    		in, out := &in.EvictionSoftGracePeriod, &out.EvictionSoftGracePeriod
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 09 11:19:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				MaxParallelImagePulls:            nil,
    				EvictionHard:                     map[string]string{},
    				EvictionSoft:                     map[string]string{},
    				EvictionSoftGracePeriod:          map[string]string{},
    				EvictionPressureTransitionPeriod: zeroDuration,
    				EvictionMaxPodGracePeriod:        0,
    				EvictionMinimumReclaim:           map[string]string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	out.EvictionHard = *(*map[string]string)(unsafe.Pointer(&in.EvictionHard))
    	out.EvictionSoft = *(*map[string]string)(unsafe.Pointer(&in.EvictionSoft))
    	out.EvictionSoftGracePeriod = *(*map[string]string)(unsafe.Pointer(&in.EvictionSoftGracePeriod))
    	out.EvictionPressureTransitionPeriod = in.EvictionPressureTransitionPeriod
    	out.EvictionMaxPodGracePeriod = in.EvictionMaxPodGracePeriod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/helpers_test.go

    		"EventBurst",
    		"EventRecordQPS",
    		"EvictionHard[*]",
    		"EvictionMaxPodGracePeriod",
    		"EvictionMinimumReclaim[*]",
    		"EvictionPressureTransitionPeriod.Duration",
    		"EvictionSoft[*]",
    		"EvictionSoftGracePeriod[*]",
    		"FailSwapOn",
    		"FeatureGates[*]",
    		"FileCheckFrequency.Duration",
    		"HTTPCheckFrequency.Duration",
    		"HairpinMode",
    		"HealthzBindAddress",
    		"HealthzPort",
    		"Logging.FlushFrequency",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers.go

    	}
    	return evictionapi.Threshold{}, "", false
    }
    
    // ParseThresholdConfig parses the flags for thresholds.
    func ParseThresholdConfig(allocatableConfig []string, evictionHard, evictionSoft, evictionSoftGracePeriod, evictionMinimumReclaim map[string]string) ([]evictionapi.Threshold, error) {
    	results := []evictionapi.Threshold{}
    	hardThresholds, err := parseThresholdStatements(evictionHard)
    	if err != nil {
    		return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	EvictionSoft map[string]string
    	// Map of signal names to quantities that defines grace periods for each soft eviction signal. For example: {"memory.available": "30s"}.
    	EvictionSoftGracePeriod map[string]string
    	// Duration for which the kubelet has to wait before transitioning out of an eviction pressure condition.
    	EvictionPressureTransitionPeriod metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. cmd/kubelet/app/options/options.go

    	fs.Var(cliflag.NewMapStringString(&c.EvictionSoftGracePeriod), "eviction-soft-grace-period", "A set of eviction grace periods (e.g. memory.available=1m30s) that correspond to how long a soft eviction threshold must hold before triggering a pod eviction.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    		enforceNodeAllocatable = []string{}
    	}
    	thresholds, err := eviction.ParseThresholdConfig(enforceNodeAllocatable, kubeCfg.EvictionHard, kubeCfg.EvictionSoft, kubeCfg.EvictionSoftGracePeriod, kubeCfg.EvictionMinimumReclaim)
    	if err != nil {
    		return nil, err
    	}
    	evictionConfig := eviction.Config{
    		PressureTransitionPeriod: kubeCfg.EvictionPressureTransitionPeriod.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.9.md

    
    #### **Kubelet**
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top