Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for UncoveredQuotaScopes (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/quota/v1/interfaces.go

    	// UncoveredQuotaScopes takes the input matched scopes which are limited by configuration and the matched quota scopes. It returns the scopes which are in limited scopes but don't have a corresponding covering quota scope
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 30 21:02:09 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. pkg/quota/v1/evaluator/core/services.go

    	return []corev1.ScopedResourceSelectorRequirement{}, nil
    }
    
    // UncoveredQuotaScopes takes the input matched scopes which are limited by configuration and the matched quota scopes.
    // It returns the scopes which are in limited scopes but don't have a corresponding covering quota scope
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. pkg/quota/v1/evaluator/core/persistent_volume_claims.go

    	return []corev1.ScopedResourceSelectorRequirement{}, nil
    }
    
    // UncoveredQuotaScopes takes the input matched scopes which are limited by configuration and the matched quota scopes.
    // It returns the scopes which are in limited scopes but don't have a corresponding covering quota scope
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    	return []corev1.ScopedResourceSelectorRequirement{}, nil
    }
    
    // UncoveredQuotaScopes takes the input matched scopes which are limited by configuration and the matched quota scopes.
    // It returns the scopes which are in limited scopes but don't have a corresponding covering quota scope
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/pods.go

    		}
    	}
    	return matchedScopes, nil
    }
    
    // UncoveredQuotaScopes takes the input matched scopes which are limited by configuration and the matched quota scopes.
    // It returns the scopes which are in limited scopes but don't have a corresponding covering quota scope
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	}
    
    	// verify that for every scope that had limited access enabled
    	// that there was a corresponding quota that covered it.
    	// if not, we reject the request.
    	scopesHasNoCoveringQuota, err := evaluator.UncoveredQuotaScopes(limitedScopes, restrictedScopes)
    	if err != nil {
    		return quotas, err
    	}
    	if len(scopesHasNoCoveringQuota) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top