12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*
- 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 persistentvolumeclaim
- import (
- utilfeature "k8s.io/apiserver/pkg/util/feature"
- "k8s.io/kubernetes/pkg/apis/core"
- "k8s.io/kubernetes/pkg/features"
- )
- const (
- pvc string = "PersistentVolumeClaim"
- volumeSnapshot string = "VolumeSnapshot"
- )
- // DropDisabledFields removes disabled fields from the pvc spec.
- // This should be called from PrepareForCreate/PrepareForUpdate for all resources containing a pvc spec.
- func DropDisabledFields(pvcSpec, oldPVCSpec *core.PersistentVolumeClaimSpec) {
- if !utilfeature.DefaultFeatureGate.Enabled(features.BlockVolume) && !volumeModeInUse(oldPVCSpec) {
- pvcSpec.VolumeMode = nil
- }
- if !dataSourceIsEnabled(pvcSpec) && !dataSourceInUse(oldPVCSpec) {
- pvcSpec.DataSource = nil
- }
- }
- func volumeModeInUse(oldPVCSpec *core.PersistentVolumeClaimSpec) bool {
- if oldPVCSpec == nil {
- return false
- }
- if oldPVCSpec.VolumeMode != nil {
- return true
- }
- return false
- }
- func dataSourceInUse(oldPVCSpec *core.PersistentVolumeClaimSpec) bool {
- if oldPVCSpec == nil {
- return false
- }
- if oldPVCSpec.DataSource != nil {
- return true
- }
- return false
- }
- func dataSourceIsEnabled(pvcSpec *core.PersistentVolumeClaimSpec) bool {
- if pvcSpec.DataSource != nil {
- apiGroup := ""
- if pvcSpec.DataSource.APIGroup != nil {
- apiGroup = *pvcSpec.DataSource.APIGroup
- }
- if utilfeature.DefaultFeatureGate.Enabled(features.VolumePVCDataSource) &&
- pvcSpec.DataSource.Kind == pvc &&
- apiGroup == "" {
- return true
- }
- if utilfeature.DefaultFeatureGate.Enabled(features.VolumeSnapshotDataSource) &&
- pvcSpec.DataSource.Kind == volumeSnapshot &&
- apiGroup == "snapshot.storage.k8s.io" {
- return true
- }
- }
- return false
- }
|