Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unhealthyPodEvictionPolicyInUse (0.3 sec)

  1. pkg/registry/policy/poddisruptionbudget/strategy.go

    	if !utilfeature.DefaultFeatureGate.Enabled(features.PDBUnhealthyPodEvictionPolicy) {
    		if !unhealthyPodEvictionPolicyInUse(oldPDBSpec) {
    			pdbSpec.UnhealthyPodEvictionPolicy = nil
    		}
    	}
    }
    
    func unhealthyPodEvictionPolicyInUse(oldPDBSpec *policy.PodDisruptionBudgetSpec) bool {
    	if oldPDBSpec == nil {
    		return false
    	}
    	if oldPDBSpec.UnhealthyPodEvictionPolicy != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:25:42 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top