12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- Copyright 2019 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 csidriver
- import (
- "context"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/util/validation/field"
- "k8s.io/apiserver/pkg/storage/names"
- "k8s.io/kubernetes/pkg/api/legacyscheme"
- "k8s.io/kubernetes/pkg/apis/storage"
- "k8s.io/kubernetes/pkg/apis/storage/validation"
- )
- // csiDriverStrategy implements behavior for CSIDriver objects
- type csiDriverStrategy struct {
- runtime.ObjectTyper
- names.NameGenerator
- }
- // Strategy is the default logic that applies when creating and updating
- // CSIDriver objects via the REST API.
- var Strategy = csiDriverStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
- func (csiDriverStrategy) NamespaceScoped() bool {
- return false
- }
- // ResetBeforeCreate clears the Status field which is not allowed to be set by end users on creation.
- func (csiDriverStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
- }
- func (csiDriverStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
- csiDriver := obj.(*storage.CSIDriver)
- errs := validation.ValidateCSIDriver(csiDriver)
- errs = append(errs, validation.ValidateCSIDriver(csiDriver)...)
- return errs
- }
- // Canonicalize normalizes the object after validation.
- func (csiDriverStrategy) Canonicalize(obj runtime.Object) {
- }
- func (csiDriverStrategy) AllowCreateOnUpdate() bool {
- return false
- }
- // PrepareForUpdate sets the Status fields which is not allowed to be set by an end user updating a CSIDriver
- func (csiDriverStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
- }
- func (csiDriverStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
- newCSIDriverObj := obj.(*storage.CSIDriver)
- oldCSIDriverObj := old.(*storage.CSIDriver)
- errorList := validation.ValidateCSIDriver(newCSIDriverObj)
- return append(errorList, validation.ValidateCSIDriverUpdate(newCSIDriverObj, oldCSIDriverObj)...)
- }
- func (csiDriverStrategy) AllowUnconditionalUpdate() bool {
- return false
- }
|