Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for scopeSelectors (0.56 sec)

  1. CHANGELOG/CHANGELOG-1.12.md

    - Kubernetes now supports extra `--prune-whitelist` resources in kube-addon-manager. ([#67743](https://github.com/kubernetes/kubernetes/pull/67743), [@Random-Liu](https://github.com/Random-Liu))
    - Graduate Resource Quota ScopeSelectors to beta, and enable it by default. ([#67077](https://github.com/kubernetes/kubernetes/pull/67077), [@vikaschoudhary16](https://github.com/vikaschoudhary16))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ScopeSelector)(nil), (*core.ScopeSelector)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ScopeSelector_To_core_ScopeSelector(a.(*v1.ScopeSelector), b.(*core.ScopeSelector), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.ScopeSelector)(nil), (*v1.ScopeSelector)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      repeated string scopes = 2;
    
      // scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
      // but expressed using ScopeSelectorOperator in combination with possible values.
      // For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
      // +optional
      optional ScopeSelector scopeSelector = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// +optional
    	Scopes []ResourceQuotaScope
    	// ScopeSelector is also a collection of filters like Scopes that must match each object tracked by a quota
    	// but expressed using ScopeSelectorOperator in combination with possible values.
    	// +optional
    	ScopeSelector *ScopeSelector
    }
    
    // ScopeSelector represents the AND of the selectors represented
    // by the scoped-resource selector terms.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
    	// but expressed using ScopeSelectorOperator in combination with possible values.
    	// For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
    	// +optional
    	ScopeSelector *ScopeSelector `json:"scopeSelector,omitempty" protobuf:"bytes,3,opt,name=scopeSelector"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      repeated string scopes = 2;
    
      // scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
      // but expressed using ScopeSelectorOperator in combination with possible values.
      // For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
      // +optional
      optional ScopeSelector scopeSelector = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"scopeSelector": "scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.",
    }
    
    func (ResourceQuotaSpec) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	if resourceQuotaSpec.ScopeSelector == nil {
    		return allErrs
    	}
    	allErrs = append(allErrs, validateScopedResourceSelectorRequirement(resourceQuotaSpec, fld.Child("scopeSelector"))...)
    	return allErrs
    }
    
    // ValidateResourceQuota tests if required fields in the ResourceQuota are set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
Back to top