mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 09:22:44 +00:00
minor comment and code fixes
This commit is contained in:
parent
b5b190df2d
commit
b6557babf2
@ -48,8 +48,8 @@ func MatchesNoScopeFunc(scope api.ResourceQuotaScope, object runtime.Object) boo
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// ObjectCountConstraintsFunc returns true if the specified resource name is in
|
// ObjectCountConstraintsFunc returns ConstraintsFunc that returns nil if the
|
||||||
// the required set of resource names
|
// specified resource name is in the required set of resource names
|
||||||
func ObjectCountConstraintsFunc(resourceName api.ResourceName) ConstraintsFunc {
|
func ObjectCountConstraintsFunc(resourceName api.ResourceName) ConstraintsFunc {
|
||||||
return func(required []api.ResourceName, item runtime.Object) error {
|
return func(required []api.ResourceName, item runtime.Object) error {
|
||||||
if !quota.Contains(required, resourceName) {
|
if !quota.Contains(required, resourceName) {
|
||||||
@ -133,6 +133,7 @@ func (g *GenericEvaluator) Matches(resourceQuota *api.ResourceQuota, item runtim
|
|||||||
for resourceName := range resourceQuota.Status.Hard {
|
for resourceName := range resourceQuota.Status.Hard {
|
||||||
if g.MatchesResource(resourceName) {
|
if g.MatchesResource(resourceName) {
|
||||||
matchResource = true
|
matchResource = true
|
||||||
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// by default, no scopes matches all
|
// by default, no scopes matches all
|
||||||
|
Loading…
Reference in New Issue
Block a user