mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			104 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2016 The Kubernetes Authors.
 | |
| 
 | |
| Licensed under the Apache License, Version 2.0 (the "License");
 | |
| you may not use this file except in compliance with the License.
 | |
| You may obtain a copy of the License at
 | |
| 
 | |
|     http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
| Unless required by applicable law or agreed to in writing, software
 | |
| distributed under the License is distributed on an "AS IS" BASIS,
 | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| See the License for the specific language governing permissions and
 | |
| limitations under the License.
 | |
| */
 | |
| 
 | |
| package storageclass
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 
 | |
| 	"k8s.io/apimachinery/pkg/fields"
 | |
| 	"k8s.io/apimachinery/pkg/labels"
 | |
| 	"k8s.io/apimachinery/pkg/runtime"
 | |
| 	"k8s.io/apimachinery/pkg/util/validation/field"
 | |
| 	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
 | |
| 	"k8s.io/apiserver/pkg/registry/generic"
 | |
| 	apistorage "k8s.io/apiserver/pkg/storage"
 | |
| 	"k8s.io/apiserver/pkg/storage/names"
 | |
| 	"k8s.io/kubernetes/pkg/api"
 | |
| 	"k8s.io/kubernetes/pkg/apis/storage"
 | |
| 	"k8s.io/kubernetes/pkg/apis/storage/validation"
 | |
| )
 | |
| 
 | |
| // storageClassStrategy implements behavior for StorageClass objects
 | |
| type storageClassStrategy struct {
 | |
| 	runtime.ObjectTyper
 | |
| 	names.NameGenerator
 | |
| }
 | |
| 
 | |
| // Strategy is the default logic that applies when creating and updating
 | |
| // StorageClass objects via the REST API.
 | |
| var Strategy = storageClassStrategy{api.Scheme, names.SimpleNameGenerator}
 | |
| 
 | |
| func (storageClassStrategy) NamespaceScoped() bool {
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| // ResetBeforeCreate clears the Status field which is not allowed to be set by end users on creation.
 | |
| func (storageClassStrategy) PrepareForCreate(ctx genericapirequest.Context, obj runtime.Object) {
 | |
| 	_ = obj.(*storage.StorageClass)
 | |
| }
 | |
| 
 | |
| func (storageClassStrategy) Validate(ctx genericapirequest.Context, obj runtime.Object) field.ErrorList {
 | |
| 	storageClass := obj.(*storage.StorageClass)
 | |
| 	return validation.ValidateStorageClass(storageClass)
 | |
| }
 | |
| 
 | |
| // Canonicalize normalizes the object after validation.
 | |
| func (storageClassStrategy) Canonicalize(obj runtime.Object) {
 | |
| }
 | |
| 
 | |
| func (storageClassStrategy) AllowCreateOnUpdate() bool {
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| // PrepareForUpdate sets the Status fields which is not allowed to be set by an end user updating a PV
 | |
| func (storageClassStrategy) PrepareForUpdate(ctx genericapirequest.Context, obj, old runtime.Object) {
 | |
| 	_ = obj.(*storage.StorageClass)
 | |
| 	_ = old.(*storage.StorageClass)
 | |
| }
 | |
| 
 | |
| func (storageClassStrategy) ValidateUpdate(ctx genericapirequest.Context, obj, old runtime.Object) field.ErrorList {
 | |
| 	errorList := validation.ValidateStorageClass(obj.(*storage.StorageClass))
 | |
| 	return append(errorList, validation.ValidateStorageClassUpdate(obj.(*storage.StorageClass), old.(*storage.StorageClass))...)
 | |
| }
 | |
| 
 | |
| func (storageClassStrategy) AllowUnconditionalUpdate() bool {
 | |
| 	return true
 | |
| }
 | |
| 
 | |
| // GetAttrs returns labels and fields of a given object for filtering purposes.
 | |
| func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, bool, error) {
 | |
| 	cls, ok := obj.(*storage.StorageClass)
 | |
| 	if !ok {
 | |
| 		return nil, nil, false, fmt.Errorf("given object is not of type StorageClass")
 | |
| 	}
 | |
| 	return labels.Set(cls.ObjectMeta.Labels), StorageClassToSelectableFields(cls), cls.Initializers != nil, nil
 | |
| }
 | |
| 
 | |
| // MatchStorageClass returns a generic matcher for a given label and field selector.
 | |
| func MatchStorageClasses(label labels.Selector, field fields.Selector) apistorage.SelectionPredicate {
 | |
| 	return apistorage.SelectionPredicate{
 | |
| 		Label:    label,
 | |
| 		Field:    field,
 | |
| 		GetAttrs: GetAttrs,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // StorageClassToSelectableFields returns a label set that represents the object
 | |
| func StorageClassToSelectableFields(storageClass *storage.StorageClass) fields.Set {
 | |
| 	return generic.ObjectMetaFieldsSet(&storageClass.ObjectMeta, false)
 | |
| }
 |