123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /*
- 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 storage
- import (
- "github.com/onsi/ginkgo"
- "github.com/onsi/gomega"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/labels"
- "k8s.io/apimachinery/pkg/types"
- utilerrors "k8s.io/apimachinery/pkg/util/errors"
- clientset "k8s.io/client-go/kubernetes"
- "k8s.io/kubernetes/test/e2e/framework"
- e2elog "k8s.io/kubernetes/test/e2e/framework/log"
- "k8s.io/kubernetes/test/e2e/framework/providers/gce"
- "k8s.io/kubernetes/test/e2e/storage/utils"
- )
- // verifyGCEDiskAttached performs a sanity check to verify the PD attached to the node
- func verifyGCEDiskAttached(diskName string, nodeName types.NodeName) bool {
- gceCloud, err := gce.GetGCECloud()
- framework.ExpectNoError(err)
- isAttached, err := gceCloud.DiskIsAttached(diskName, nodeName)
- framework.ExpectNoError(err)
- return isAttached
- }
- // initializeGCETestSpec creates a PV, PVC, and ClientPod that will run until killed by test or clean up.
- func initializeGCETestSpec(c clientset.Interface, ns string, pvConfig framework.PersistentVolumeConfig, pvcConfig framework.PersistentVolumeClaimConfig, isPrebound bool) (*v1.Pod, *v1.PersistentVolume, *v1.PersistentVolumeClaim) {
- ginkgo.By("Creating the PV and PVC")
- pv, pvc, err := framework.CreatePVPVC(c, pvConfig, pvcConfig, ns, isPrebound)
- framework.ExpectNoError(err)
- framework.ExpectNoError(framework.WaitOnPVandPVC(c, ns, pv, pvc))
- ginkgo.By("Creating the Client Pod")
- clientPod, err := framework.CreateClientPod(c, ns, pvc)
- framework.ExpectNoError(err)
- return clientPod, pv, pvc
- }
- // Testing configurations of single a PV/PVC pair attached to a GCE PD
- var _ = utils.SIGDescribe("PersistentVolumes GCEPD", func() {
- var (
- c clientset.Interface
- diskName string
- ns string
- err error
- pv *v1.PersistentVolume
- pvc *v1.PersistentVolumeClaim
- clientPod *v1.Pod
- pvConfig framework.PersistentVolumeConfig
- pvcConfig framework.PersistentVolumeClaimConfig
- volLabel labels.Set
- selector *metav1.LabelSelector
- node types.NodeName
- )
- f := framework.NewDefaultFramework("pv")
- ginkgo.BeforeEach(func() {
- c = f.ClientSet
- ns = f.Namespace.Name
- // Enforce binding only within test space via selector labels
- volLabel = labels.Set{framework.VolumeSelectorKey: ns}
- selector = metav1.SetAsLabelSelector(volLabel)
- framework.SkipUnlessProviderIs("gce", "gke")
- ginkgo.By("Initializing Test Spec")
- diskName, err = framework.CreatePDWithRetry()
- framework.ExpectNoError(err)
- pvConfig = framework.PersistentVolumeConfig{
- NamePrefix: "gce-",
- Labels: volLabel,
- PVSource: v1.PersistentVolumeSource{
- GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
- PDName: diskName,
- FSType: "ext3",
- ReadOnly: false,
- },
- },
- Prebind: nil,
- }
- emptyStorageClass := ""
- pvcConfig = framework.PersistentVolumeClaimConfig{
- Selector: selector,
- StorageClassName: &emptyStorageClass,
- }
- clientPod, pv, pvc = initializeGCETestSpec(c, ns, pvConfig, pvcConfig, false)
- node = types.NodeName(clientPod.Spec.NodeName)
- })
- ginkgo.AfterEach(func() {
- e2elog.Logf("AfterEach: Cleaning up test resources")
- if c != nil {
- framework.ExpectNoError(framework.DeletePodWithWait(f, c, clientPod))
- if errs := framework.PVPVCCleanup(c, ns, pv, pvc); len(errs) > 0 {
- framework.Failf("AfterEach: Failed to delete PVC and/or PV. Errors: %v", utilerrors.NewAggregate(errs))
- }
- clientPod, pv, pvc, node = nil, nil, nil, ""
- if diskName != "" {
- framework.ExpectNoError(framework.DeletePDWithRetry(diskName))
- }
- }
- })
- // Attach a persistent disk to a pod using a PVC.
- // Delete the PVC and then the pod. Expect the pod to succeed in unmounting and detaching PD on delete.
- ginkgo.It("should test that deleting a PVC before the pod does not cause pod deletion to fail on PD detach", func() {
- ginkgo.By("Deleting the Claim")
- framework.ExpectNoError(framework.DeletePersistentVolumeClaim(c, pvc.Name, ns), "Unable to delete PVC ", pvc.Name)
- gomega.Expect(verifyGCEDiskAttached(diskName, node)).To(gomega.BeTrue())
- ginkgo.By("Deleting the Pod")
- framework.ExpectNoError(framework.DeletePodWithWait(f, c, clientPod), "Failed to delete pod ", clientPod.Name)
- ginkgo.By("Verifying Persistent Disk detach")
- framework.ExpectNoError(waitForPDDetach(diskName, node), "PD ", diskName, " did not detach")
- })
- // Attach a persistent disk to a pod using a PVC.
- // Delete the PV and then the pod. Expect the pod to succeed in unmounting and detaching PD on delete.
- ginkgo.It("should test that deleting the PV before the pod does not cause pod deletion to fail on PD detach", func() {
- ginkgo.By("Deleting the Persistent Volume")
- framework.ExpectNoError(framework.DeletePersistentVolume(c, pv.Name), "Failed to delete PV ", pv.Name)
- gomega.Expect(verifyGCEDiskAttached(diskName, node)).To(gomega.BeTrue())
- ginkgo.By("Deleting the client pod")
- framework.ExpectNoError(framework.DeletePodWithWait(f, c, clientPod), "Failed to delete pod ", clientPod.Name)
- ginkgo.By("Verifying Persistent Disk detaches")
- framework.ExpectNoError(waitForPDDetach(diskName, node), "PD ", diskName, " did not detach")
- })
- // Test that a Pod and PVC attached to a GCEPD successfully unmounts and detaches when the encompassing Namespace is deleted.
- ginkgo.It("should test that deleting the Namespace of a PVC and Pod causes the successful detach of Persistent Disk", func() {
- ginkgo.By("Deleting the Namespace")
- err := c.CoreV1().Namespaces().Delete(ns, nil)
- framework.ExpectNoError(err)
- err = framework.WaitForNamespacesDeleted(c, []string{ns}, framework.DefaultNamespaceDeletionTimeout)
- framework.ExpectNoError(err)
- ginkgo.By("Verifying Persistent Disk detaches")
- framework.ExpectNoError(waitForPDDetach(diskName, node), "PD ", diskName, " did not detach")
- })
- })
|