123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- /*
- Copyright 2017 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 volumeattachment
- import (
- "context"
- storageapiv1beta1 "k8s.io/api/storage/v1beta1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/runtime/schema"
- "k8s.io/apimachinery/pkg/util/validation/field"
- genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
- "k8s.io/apiserver/pkg/storage/names"
- utilfeature "k8s.io/apiserver/pkg/util/feature"
- "k8s.io/kubernetes/pkg/api/legacyscheme"
- "k8s.io/kubernetes/pkg/apis/storage"
- "k8s.io/kubernetes/pkg/apis/storage/validation"
- "k8s.io/kubernetes/pkg/features"
- )
- // volumeAttachmentStrategy implements behavior for VolumeAttachment objects
- type volumeAttachmentStrategy struct {
- runtime.ObjectTyper
- names.NameGenerator
- }
- // Strategy is the default logic that applies when creating and updating
- // VolumeAttachment objects via the REST API.
- var Strategy = volumeAttachmentStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
- func (volumeAttachmentStrategy) NamespaceScoped() bool {
- return false
- }
- // ResetBeforeCreate clears the Status field which is not allowed to be set by end users on creation.
- func (volumeAttachmentStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
- var groupVersion schema.GroupVersion
- if requestInfo, found := genericapirequest.RequestInfoFrom(ctx); found {
- groupVersion = schema.GroupVersion{Group: requestInfo.APIGroup, Version: requestInfo.APIVersion}
- }
- volumeAttachment := obj.(*storage.VolumeAttachment)
- switch groupVersion {
- case storageapiv1beta1.SchemeGroupVersion:
- // allow modification of status for v1beta1
- default:
- volumeAttachment := obj.(*storage.VolumeAttachment)
- volumeAttachment.Status = storage.VolumeAttachmentStatus{}
- }
- if !utilfeature.DefaultFeatureGate.Enabled(features.CSIMigration) {
- volumeAttachment.Spec.Source.InlineVolumeSpec = nil
- }
- }
- func (volumeAttachmentStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
- volumeAttachment := obj.(*storage.VolumeAttachment)
- errs := validation.ValidateVolumeAttachment(volumeAttachment)
- var groupVersion schema.GroupVersion
- if requestInfo, found := genericapirequest.RequestInfoFrom(ctx); found {
- groupVersion = schema.GroupVersion{Group: requestInfo.APIGroup, Version: requestInfo.APIVersion}
- }
- switch groupVersion {
- case storageapiv1beta1.SchemeGroupVersion:
- // no extra validation
- default:
- // tighten up validation of newly created v1 attachments
- errs = append(errs, validation.ValidateVolumeAttachmentV1(volumeAttachment)...)
- }
- return errs
- }
- // Canonicalize normalizes the object after validation.
- func (volumeAttachmentStrategy) Canonicalize(obj runtime.Object) {
- }
- func (volumeAttachmentStrategy) AllowCreateOnUpdate() bool {
- return false
- }
- // PrepareForUpdate sets the Status fields which is not allowed to be set by an end user updating a VolumeAttachment
- func (volumeAttachmentStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
- var groupVersion schema.GroupVersion
- if requestInfo, found := genericapirequest.RequestInfoFrom(ctx); found {
- groupVersion = schema.GroupVersion{Group: requestInfo.APIGroup, Version: requestInfo.APIVersion}
- }
- newVolumeAttachment := obj.(*storage.VolumeAttachment)
- oldVolumeAttachment := old.(*storage.VolumeAttachment)
- switch groupVersion {
- case storageapiv1beta1.SchemeGroupVersion:
- // allow modification of Status via main resource for v1beta1
- default:
- newVolumeAttachment.Status = oldVolumeAttachment.Status
- // No need to increment Generation because we don't allow updates to spec
- }
- if !utilfeature.DefaultFeatureGate.Enabled(features.CSIMigration) && oldVolumeAttachment.Spec.Source.InlineVolumeSpec == nil {
- newVolumeAttachment.Spec.Source.InlineVolumeSpec = nil
- }
- }
- func (volumeAttachmentStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
- newVolumeAttachmentObj := obj.(*storage.VolumeAttachment)
- oldVolumeAttachmentObj := old.(*storage.VolumeAttachment)
- errorList := validation.ValidateVolumeAttachment(newVolumeAttachmentObj)
- return append(errorList, validation.ValidateVolumeAttachmentUpdate(newVolumeAttachmentObj, oldVolumeAttachmentObj)...)
- }
- func (volumeAttachmentStrategy) AllowUnconditionalUpdate() bool {
- return false
- }
- // volumeAttachmentStatusStrategy implements behavior for VolumeAttachmentStatus subresource
- type volumeAttachmentStatusStrategy struct {
- volumeAttachmentStrategy
- }
- // StatusStrategy is the default logic that applies when creating and updating
- // VolumeAttachmentStatus subresource via the REST API.
- var StatusStrategy = volumeAttachmentStatusStrategy{Strategy}
- // PrepareForUpdate sets the Status fields which is not allowed to be set by an end user updating a VolumeAttachment
- func (volumeAttachmentStatusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
- newVolumeAttachment := obj.(*storage.VolumeAttachment)
- oldVolumeAttachment := old.(*storage.VolumeAttachment)
- newVolumeAttachment.Spec = oldVolumeAttachment.Spec
- metav1.ResetObjectMetaForStatus(&newVolumeAttachment.ObjectMeta, &oldVolumeAttachment.ObjectMeta)
- }
|