mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
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 !dataSourceIsEnabled(pvcSpec) && !dataSourceInUse(oldPVCSpec) {
 | 
						|
		pvcSpec.DataSource = nil
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
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 {
 | 
						|
		if utilfeature.DefaultFeatureGate.Enabled(features.AnyVolumeDataSource) {
 | 
						|
			return true
 | 
						|
		}
 | 
						|
 | 
						|
		apiGroup := ""
 | 
						|
		if pvcSpec.DataSource.APIGroup != nil {
 | 
						|
			apiGroup = *pvcSpec.DataSource.APIGroup
 | 
						|
		}
 | 
						|
		if pvcSpec.DataSource.Kind == pvc &&
 | 
						|
			apiGroup == "" {
 | 
						|
			return true
 | 
						|
 | 
						|
		}
 | 
						|
 | 
						|
		if pvcSpec.DataSource.Kind == volumeSnapshot && apiGroup == "snapshot.storage.k8s.io" {
 | 
						|
			return true
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return false
 | 
						|
}
 |