mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 10:33:35 +00:00
build: move e2e dependencies into e2e/go.mod
Several packages are only used while running the e2e suite. These packages are less important to update, as the they can not influence the final executable that is part of the Ceph-CSI container-image. By moving these dependencies out of the main Ceph-CSI go.mod, it is easier to identify if a reported CVE affects Ceph-CSI, or only the testing (like most of the Kubernetes CVEs). Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
committed by
mergify[bot]
parent
15da101b1b
commit
bec6090996
57
e2e/vendor/k8s.io/component-helpers/storage/ephemeral/ephemeral.go
generated
vendored
Normal file
57
e2e/vendor/k8s.io/component-helpers/storage/ephemeral/ephemeral.go
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
/*
|
||||
Copyright 2021 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 ephemeral provides code that supports the usual pattern
|
||||
// for accessing the PVC that provides a generic ephemeral inline volume:
|
||||
//
|
||||
// - determine the PVC name that corresponds to the inline volume source
|
||||
// - retrieve the PVC
|
||||
// - verify that the PVC is owned by the pod
|
||||
// - use the PVC
|
||||
package ephemeral
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
v1 "k8s.io/api/core/v1"
|
||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
)
|
||||
|
||||
// VolumeClaimName returns the name of the PersistentVolumeClaim
|
||||
// object that gets created for the generic ephemeral inline volume. The
|
||||
// name is deterministic and therefore this function does not need any
|
||||
// additional information besides the Pod name and volume name and it
|
||||
// will never fail.
|
||||
//
|
||||
// Before using the PVC for the Pod, the caller must check that it is
|
||||
// indeed the PVC that was created for the Pod by calling IsUsable.
|
||||
func VolumeClaimName(pod *v1.Pod, volume *v1.Volume) string {
|
||||
return pod.Name + "-" + volume.Name
|
||||
}
|
||||
|
||||
// VolumeIsForPod checks that the PVC is the ephemeral volume that
|
||||
// was created for the Pod. It returns an error that is informative
|
||||
// enough to be returned by the caller without adding further details
|
||||
// about the Pod or PVC.
|
||||
func VolumeIsForPod(pod *v1.Pod, pvc *v1.PersistentVolumeClaim) error {
|
||||
// Checking the namespaces is just a precaution. The caller should
|
||||
// never pass in a PVC that isn't from the same namespace as the
|
||||
// Pod.
|
||||
if pvc.Namespace != pod.Namespace || !metav1.IsControlledBy(pvc, pod) {
|
||||
return fmt.Errorf("PVC %s/%s was not created for pod %s/%s (pod is not owner)", pvc.Namespace, pvc.Name, pod.Namespace, pod.Name)
|
||||
}
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user