@@ -560,31 +560,31 @@ var _ = framework.KubeDescribe("PersistentVolumes", func() {
560
560
// Create an nfs PV, then a claim that matches the PV, and a pod that
561
561
// contains the claim. Verify that the PV and PVC bind correctly, and
562
562
// that the pod can write to the nfs volume.
563
- It ("should create a non-pre-bound PV and PVC: test write access [Flaky]" , func () {
563
+ It ("should create a non-pre-bound PV and PVC: test write access [Volume][Serial][ Flaky]" , func () {
564
564
pv , pvc = createPVPVC (c , pvConfig , ns , false )
565
565
completeTest (f , c , ns , pv , pvc )
566
566
})
567
567
568
568
// Create a claim first, then a nfs PV that matches the claim, and a
569
569
// pod that contains the claim. Verify that the PV and PVC bind
570
570
// correctly, and that the pod can write to the nfs volume.
571
- It ("create a PVC and non-pre-bound PV: test write access [Flaky]" , func () {
571
+ It ("create a PVC and non-pre-bound PV: test write access [Volume][Serial][ Flaky]" , func () {
572
572
pv , pvc = createPVCPV (c , pvConfig , ns , false )
573
573
completeTest (f , c , ns , pv , pvc )
574
574
})
575
575
576
576
// Create a claim first, then a pre-bound nfs PV that matches the claim,
577
577
// and a pod that contains the claim. Verify that the PV and PVC bind
578
578
// correctly, and that the pod can write to the nfs volume.
579
- It ("create a PVC and a pre-bound PV: test write access [Flaky]" , func () {
579
+ It ("create a PVC and a pre-bound PV: test write access [Volume][Serial][ Flaky]" , func () {
580
580
pv , pvc = createPVCPV (c , pvConfig , ns , true )
581
581
completeTest (f , c , ns , pv , pvc )
582
582
})
583
583
584
584
// Create a nfs PV first, then a pre-bound PVC that matches the PV,
585
585
// and a pod that contains the claim. Verify that the PV and PVC bind
586
586
// correctly, and that the pod can write to the nfs volume.
587
- It ("create a PV and a pre-bound PVC: test write access [Flaky]" , func () {
587
+ It ("create a PV and a pre-bound PVC: test write access [Volume][Serial][ Flaky]" , func () {
588
588
pv , pvc = createPVPVC (c , pvConfig , ns , true )
589
589
completeTest (f , c , ns , pv , pvc )
590
590
})
@@ -615,7 +615,7 @@ var _ = framework.KubeDescribe("PersistentVolumes", func() {
615
615
616
616
// Create 2 PVs and 4 PVCs.
617
617
// Note: PVs are created before claims and no pre-binding
618
- It ("should create 2 PVs and 4 PVCs: test write access[Flaky]" , func () {
618
+ It ("should create 2 PVs and 4 PVCs: test write access [Volume][Serial] [Flaky]" , func () {
619
619
numPVs , numPVCs := 2 , 4
620
620
pvols , claims = createPVsPVCs (numPVs , numPVCs , c , ns , pvConfig )
621
621
waitAndVerifyBinds (c , ns , pvols , claims , true )
@@ -624,7 +624,7 @@ var _ = framework.KubeDescribe("PersistentVolumes", func() {
624
624
625
625
// Create 3 PVs and 3 PVCs.
626
626
// Note: PVs are created before claims and no pre-binding
627
- It ("should create 3 PVs and 3 PVCs: test write access[Flaky]" , func () {
627
+ It ("should create 3 PVs and 3 PVCs: test write access [Volume][Serial] [Flaky]" , func () {
628
628
numPVs , numPVCs := 3 , 3
629
629
pvols , claims = createPVsPVCs (numPVs , numPVCs , c , ns , pvConfig )
630
630
waitAndVerifyBinds (c , ns , pvols , claims , true )
@@ -633,7 +633,7 @@ var _ = framework.KubeDescribe("PersistentVolumes", func() {
633
633
634
634
// Create 4 PVs and 2 PVCs.
635
635
// Note: PVs are created before claims and no pre-binding.
636
- It ("should create 4 PVs and 2 PVCs: test write access[Flaky]" , func () {
636
+ It ("should create 4 PVs and 2 PVCs: test write access [Volume][Serial] [Flaky]" , func () {
637
637
numPVs , numPVCs := 4 , 2
638
638
pvols , claims = createPVsPVCs (numPVs , numPVCs , c , ns , pvConfig )
639
639
waitAndVerifyBinds (c , ns , pvols , claims , true )
@@ -694,7 +694,7 @@ var _ = framework.KubeDescribe("PersistentVolumes", func() {
694
694
695
695
// Attach a persistent disk to a pod using a PVC.
696
696
// Delete the PVC and then the pod. Expect the pod to succeed in unmounting and detaching PD on delete.
697
- It ("should test that deleting a PVC before the pod does not cause pod deletion to fail on PD detach" , func () {
697
+ It ("should test that deleting a PVC before the pod does not cause pod deletion to fail on PD detach [Volume][Serial][Flaky] " , func () {
698
698
By ("Creating the PV and PVC" )
699
699
pv , pvc = createPVPVC (c , pvConfig , ns , false )
700
700
waitOnPVandPVC (c , ns , pv , pvc )
@@ -717,7 +717,7 @@ var _ = framework.KubeDescribe("PersistentVolumes", func() {
717
717
718
718
// Attach a persistent disk to a pod using a PVC.
719
719
// Delete the PV and then the pod. Expect the pod to succeed in unmounting and detaching PD on delete.
720
- It ("should test that deleting the PV before the pod does not cause pod deletion to fail on PD detach" , func () {
720
+ It ("should test that deleting the PV before the pod does not cause pod deletion to fail on PD detach [Volume][Serial][Flaky] " , func () {
721
721
By ("Creating the PV and PVC" )
722
722
pv , pvc = createPVPVC (c , pvConfig , ns , false )
723
723
waitOnPVandPVC (c , ns , pv , pvc )
0 commit comments