-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathtest-reporting.yaml
1818 lines (1818 loc) · 136 KB
/
test-reporting.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: config.openshift.io/v1
kind: TestReporting
metadata:
creationTimestamp: null
name: cluster
spec:
testsForFeatureGates:
- featureGate: CRDValidationRatcheting
tests:
- testName: '[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin]
[FeatureGate:CRDValidationRatcheting] [Beta] MUST NOT fail to update a resource
due to CRD Validation Rule errors on unchanged correlatable fields'
- testName: '[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin]
[FeatureGate:CRDValidationRatcheting] [Beta] MUST NOT fail to update a resource
due to JSONSchema errors on unchanged correlatable fields'
- testName: '[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin]
[FeatureGate:CRDValidationRatcheting] [Beta] MUST NOT ratchet errors raised
by transition rules'
- testName: '[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin]
[FeatureGate:CRDValidationRatcheting] [Beta] MUST evaluate a CRD Validation
Rule with oldSelf = nil for new values when optionalOldSelf is true'
- testName: '[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin]
[FeatureGate:CRDValidationRatcheting] [Beta] MUST fail to update a resource
due to CRD Validation Rule errors on changed fields'
- testName: '[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin]
[FeatureGate:CRDValidationRatcheting] [Beta] MUST fail to update a resource
due to CRD Validation Rule errors on unchanged uncorrelatable fields'
- testName: '[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin]
[FeatureGate:CRDValidationRatcheting] [Beta] MUST fail to update a resource
due to JSONSchema errors on changed fields'
- testName: '[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin]
[FeatureGate:CRDValidationRatcheting] [Beta] MUST fail to update a resource
due to JSONSchema errors on unchanged uncorrelatable fields'
- featureGate: CSIVolumeHealth
tests:
- testName: '[sig-storage] CSI Mock Node Volume Health [Feature:CSIVolumeHealth]
[FeatureGate:CSIVolumeHealth] [Alpha] CSI Mock Node Volume Health [Slow] return
normal volume stats'
- testName: '[sig-storage] CSI Mock Node Volume Health [Feature:CSIVolumeHealth]
[FeatureGate:CSIVolumeHealth] [Alpha] CSI Mock Node Volume Health [Slow] return
normal volume stats with abnormal volume condition'
- testName: '[sig-storage] CSI Mock Node Volume Health [Feature:CSIVolumeHealth]
[FeatureGate:CSIVolumeHealth] [Alpha] CSI Mock Node Volume Health [Slow] return
normal volume stats without volume condition'
- featureGate: ChunkSizeMiB
tests:
- testName: '[sig-imageregistry][OCPFeatureGate:ChunkSizeMiB][Serial][apigroup:imageregistry.operator.openshift.io]
Image Registry Config ChunkSizeMiB should not accept invalid ChunkSizeMiB
value'
- testName: '[sig-imageregistry][OCPFeatureGate:ChunkSizeMiB][Serial][apigroup:imageregistry.operator.openshift.io]
Image Registry Config ChunkSizeMiB should reject ChunkSizeMiB value greater
than 5 GiB'
- testName: '[sig-imageregistry][OCPFeatureGate:ChunkSizeMiB][Serial][apigroup:imageregistry.operator.openshift.io]
Image Registry Config ChunkSizeMiB should set ChunkSizeMiB value'
- testName: '[sig-imageregistry][OCPFeatureGate:ChunkSizeMiB][Serial][apigroup:imageregistry.operator.openshift.io]
Image Registry Config ChunkSizeMiB should set maximum valid ChunkSizeMiB value'
- testName: '[sig-imageregistry][OCPFeatureGate:ChunkSizeMiB][Serial][apigroup:imageregistry.operator.openshift.io]
Image Registry Config ChunkSizeMiB should set minimum valid ChunkSizeMiB value'
- featureGate: DNSNameResolver
tests:
- testName: '[sig-network][OCPFeatureGate:DNSNameResolver][Feature:EgressFirewall]
when using openshift ovn-kubernetes should ensure egressfirewall with wildcard
dns rules is created'
- featureGate: Example
tests:
- testName: '[sig-arch][OCPFeatureGate:Example] should only run FeatureGated test
when enabled'
- featureGate: GatewayAPI
tests:
- testName: '[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io]
Verify Gateway API CRDs and ensure CRD of experimental group can not be created'
- testName: '[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io]
Verify Gateway API CRDs and ensure CRD of experimental group is not installed'
- testName: '[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io]
Verify Gateway API CRDs and ensure CRD of standard group can not be created'
- testName: '[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io]
Verify Gateway API CRDs and ensure existing CRDs can not be deleted'
- testName: '[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io]
Verify Gateway API CRDs and ensure existing CRDs can not be updated'
- testName: '[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io]
Verify Gateway API CRDs and ensure required CRDs should already be installed'
- featureGate: HardwareSpeed
tests:
- testName: '[sig-etcd][OCPFeatureGate:HardwareSpeed][Serial] etcd is able to
set the hardware speed to "" [Timeout:30m][apigroup:machine.openshift.io]'
- testName: '[sig-etcd][OCPFeatureGate:HardwareSpeed][Serial] etcd is able to
set the hardware speed to Slower [Timeout:30m][apigroup:machine.openshift.io]'
- testName: '[sig-etcd][OCPFeatureGate:HardwareSpeed][Serial] etcd is able to
set the hardware speed to Standard [Timeout:30m][apigroup:machine.openshift.io]'
- featureGate: HonorPVReclaimPolicy
tests:
- testName: '[sig-storage] CSI Mock honor pv reclaim policy [Feature:HonorPVReclaimPolicy]
[FeatureGate:HonorPVReclaimPolicy] [Beta] CSI honor pv reclaim policy using
mock driver Dynamic provisioning should honor pv delete reclaim policy'
- testName: '[sig-storage] CSI Mock honor pv reclaim policy [Feature:HonorPVReclaimPolicy]
[FeatureGate:HonorPVReclaimPolicy] [Beta] CSI honor pv reclaim policy using
mock driver Dynamic provisioning should honor pv retain reclaim policy'
- testName: '[sig-storage] CSI Mock honor pv reclaim policy [Feature:HonorPVReclaimPolicy]
[FeatureGate:HonorPVReclaimPolicy] [Beta] CSI honor pv reclaim policy using
mock driver Static provisioning should honor pv delete reclaim policy'
- testName: '[sig-storage] CSI Mock honor pv reclaim policy [Feature:HonorPVReclaimPolicy]
[FeatureGate:HonorPVReclaimPolicy] [Beta] CSI honor pv reclaim policy using
mock driver Static provisioning should honor pv retain reclaim policy'
- featureGate: ImageStreamImportMode
tests:
- testName: '[sig-imageregistry][OCPFeatureGate:ImageStreamImportMode][Serial]
ImageStream API import mode should be Legacy if the import mode specified
in image.config.openshift.io config is Legacy [apigroup:image.openshift.io]'
- testName: '[sig-imageregistry][OCPFeatureGate:ImageStreamImportMode][Serial]
ImageStream API import mode should be PreserveOriginal if the import mode
specified in image.config.openshift.io config is PreserveOriginal [apigroup:image.openshift.io]'
- testName: '[sig-imageregistry][OCPFeatureGate:ImageStreamImportMode][Serial]
ImageStream API import mode should be PreserveOriginal or Legacy depending
on desired.architecture field in the CV [apigroup:image.openshift.io]'
- featureGate: ManagedBootImages
tests:
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImages][Serial] Should degrade
on a MachineSet with an OwnerReference [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImages][Serial] Should not update
boot images on any MachineSet when not configured [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImages][Serial] Should stamp
coreos-bootimages configmap with current MCO hash and release version [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImages][Serial] Should update
boot images on all MachineSets when configured [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImages][Serial] Should update
boot images only on MachineSets that are opted in [apigroup:machineconfiguration.openshift.io]'
- featureGate: ManagedBootImagesAWS
tests:
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImagesAWS][Serial] Should degrade
on a MachineSet with an OwnerReference [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImagesAWS][Serial] Should not
update boot images on any MachineSet when not configured [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImagesAWS][Serial] Should stamp
coreos-bootimages configmap with current MCO hash and release version [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImagesAWS][Serial] Should update
boot images on all MachineSets when configured [apigroup:machineconfiguration.openshift.io]'
- testName: '[sig-mco][OCPFeatureGate:ManagedBootImagesAWS][Serial] Should update
boot images only on MachineSets that are opted in [apigroup:machineconfiguration.openshift.io]'
- featureGate: MetricsCollectionProfiles
tests:
- testName: '[sig-instrumentation][OCPFeatureGate:MetricsCollectionProfiles][Serial]
The collection profiles feature-set in a heterogeneous environment, should
expose information about the applied collection profile using meta-metrics'
- testName: '[sig-instrumentation][OCPFeatureGate:MetricsCollectionProfiles][Serial]
The collection profiles feature-set in a heterogeneous environment, should
have at least one implementation for each collection profile'
- testName: '[sig-instrumentation][OCPFeatureGate:MetricsCollectionProfiles][Serial]
The collection profiles feature-set in a heterogeneous environment, should
revert to default collection profile when an empty collection profile value
is specified'
- testName: '[sig-instrumentation][OCPFeatureGate:MetricsCollectionProfiles][Serial]
The collection profiles feature-set in a homogeneous minimal environment,
should hide default metrics'
- testName: '[sig-instrumentation][OCPFeatureGate:MetricsCollectionProfiles][Serial]
The collection profiles feature-set initially, in a homogeneous default environment,
should expose default metrics'
- featureGate: MultiCIDRServiceAllocator
tests:
- testName: '[sig-network] [Feature:ServiceCIDRs] [FeatureGate:MultiCIDRServiceAllocator]
[Beta] should create Services and serve on different Service CIDRs'
- featureGate: NetworkDiagnosticsConfig
tests:
- testName: '[sig-network][OCPFeatureGate:NetworkDiagnosticsConfig][Serial] Should
be enabled by default'
- testName: '[sig-network][OCPFeatureGate:NetworkDiagnosticsConfig][Serial] Should
function without any target pods'
- testName: '[sig-network][OCPFeatureGate:NetworkDiagnosticsConfig][Serial] Should
move the source diagnostics pods based on the new selector and tolerations'
- testName: '[sig-network][OCPFeatureGate:NetworkDiagnosticsConfig][Serial] Should
move the target diagnostics pods based on the new selector and tolerations'
- testName: '[sig-network][OCPFeatureGate:NetworkDiagnosticsConfig][Serial] Should
remove all network diagnostics pods when disabled'
- testName: '[sig-network][OCPFeatureGate:NetworkDiagnosticsConfig][Serial] Should
set the condition to false if there are no nodes able to host the source pods'
- featureGate: NetworkSegmentation
tests:
- testName: '[sig-network][Feature:Layer2LiveMigration][OCPFeatureGate:NetworkSegmentation][Suite:openshift/network/virtualization]
primary UDN smoke test when using openshift ovn-kubernetes assert the primary
UDN feature works as expected'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
NetworkAttachmentDefinitions does not mirror EndpointSlices in namespaces
not using user defined primary networks L2 dualstack primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
NetworkAttachmentDefinitions does not mirror EndpointSlices in namespaces
not using user defined primary networks L3 dualstack primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default
controller for namespaces with user defined primary networks L2 primary UDN,
cluster-networked pods'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default
controller for namespaces with user defined primary networks L2 primary UDN,
host-networked pods'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default
controller for namespaces with user defined primary networks L3 primary UDN,
cluster-networked pods'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default
controller for namespaces with user defined primary networks L3 primary UDN,
host-networked pods'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
UserDefinedNetwork does not mirror EndpointSlices in namespaces not using
user defined primary networks L2 dualstack primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
UserDefinedNetwork does not mirror EndpointSlices in namespaces not using
user defined primary networks L3 dualstack primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
UserDefinedNetwork mirrors EndpointSlices managed by the default controller
for namespaces with user defined primary networks L2 primary UDN, cluster-networked
pods'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
UserDefinedNetwork mirrors EndpointSlices managed by the default controller
for namespaces with user defined primary networks L2 primary UDN, host-networked
pods'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
UserDefinedNetwork mirrors EndpointSlices managed by the default controller
for namespaces with user defined primary networks L3 primary UDN, cluster-networked
pods'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
EndpointSlices mirroring when using openshift ovn-kubernetes created using
UserDefinedNetwork mirrors EndpointSlices managed by the default controller
for namespaces with user defined primary networks L3 primary UDN, host-networked
pods'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
Network Policies when using openshift ovn-kubernetes allow ingress traffic
to one pod from a particular namespace in L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
Network Policies when using openshift ovn-kubernetes allow ingress traffic
to one pod from a particular namespace in L3 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
Network Policies when using openshift ovn-kubernetes pods within namespace
should be isolated when deny policy is present in L2 dualstack primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
Network Policies when using openshift ovn-kubernetes pods within namespace
should be isolated when deny policy is present in L3 dualstack primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller
pod connected to ClusterUserDefinedNetwork CR & managed NADs cannot be deleted
when being used'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller
should create NAD according to spec in each target namespace and report active
namespaces'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller
should create NAD in new created namespaces that apply to namespace-selector'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller
when CR is deleted, should delete all managed NAD in each target namespace'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller
when namespace-selector is mutated should create NAD in namespaces that apply
to mutated namespace-selector'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller
when namespace-selector is mutated should delete managed NAD in namespaces
that no longer apply to namespace-selector'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes UDN Pod should react to k8s.ovn.org/open-default-ports
annotations changes'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes UserDefinedNetwork CRD controller pod
connected to UserDefinedNetwork cannot be deleted when being used'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes UserDefinedNetwork CRD controller should
create NetworkAttachmentDefinition according to spec'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes UserDefinedNetwork CRD controller should
delete NetworkAttachmentDefinition when UserDefinedNetwork is deleted'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork
can perform east/west traffic between nodes for two pods connected over a
L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork
can perform east/west traffic between nodes two pods connected over a L3 primary
UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork
is isolated from the default network with L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork
is isolated from the default network with L3 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork
isolates overlapping CIDRs with L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork
isolates overlapping CIDRs with L3 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions
can perform east/west traffic between nodes for two pods connected over a
L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions
can perform east/west traffic between nodes two pods connected over a L3 primary
UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions
is isolated from the default network with L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions
is isolated from the default network with L3 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions
isolates overlapping CIDRs with L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions
isolates overlapping CIDRs with L3 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using UserDefinedNetwork can perform
east/west traffic between nodes for two pods connected over a L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using UserDefinedNetwork can perform
east/west traffic between nodes two pods connected over a L3 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using UserDefinedNetwork is isolated
from the default network with L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using UserDefinedNetwork is isolated
from the default network with L3 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using UserDefinedNetwork isolates
overlapping CIDRs with L2 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes created using UserDefinedNetwork isolates
overlapping CIDRs with L3 primary UDN'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes when primary network exist, ClusterUserDefinedNetwork
status should report not-ready'
- testName: '[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks]
when using openshift ovn-kubernetes when primary network exist, UserDefinedNetwork
status should report not-ready'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip [OCPFeatureGate:NetworkSegmentation]
when the VM attached to a primary UDN is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip [OCPFeatureGate:NetworkSegmentation]
when the VM attached to a primary UDN is restarted'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip [OCPFeatureGate:NetworkSegmentation]
when the VMI attached to a primary UDN is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
[OCPFeatureGate:NetworkSegmentation] when the VM attached to a primary UDN
is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
[OCPFeatureGate:NetworkSegmentation] when the VM attached to a primary UDN
is restarted'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
[OCPFeatureGate:NetworkSegmentation] when the VMI attached to a primary UDN
is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
when the VM attached to a secondary UDN is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
when the VM attached to a secondary UDN is restarted'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
when the VMI attached to a secondary UDN is migrated between nodes'
- featureGate: NewOLM
tests:
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM] OLMv1 CRDs should be installed'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 New
Catalog Install should fail to install if it has an invalid reference'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 default
Catalogs should be installed'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators
Catalog should serve FBC via the /v1/api/all endpoint'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators
Catalog should serve FBC via the /v1/api/all endpoint'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace
Catalog should serve FBC via the /v1/api/all endpoint'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators
Catalog should serve FBC via the /v1/api/all endpoint'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator
installation should block cluster upgrades if an incompatible operator is
installed'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator
installation should fail to install a non-existing cluster extension'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator
installation should install a cluster extension'
- featureGate: NewOLMCatalogdAPIV1Metas
tests:
- testName: '[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected]
OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/metas
endpoint'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected]
OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/metas
endpoint'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected]
OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/metas
endpoint'
- testName: '[sig-olmv1][OCPFeatureGate:NewOLMCatalogdAPIV1Metas][Skipped:Disconnected]
OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/metas
endpoint'
- featureGate: OrderedNamespaceDeletion
tests:
- testName: '[sig-api-machinery] OrderedNamespaceDeletion namespace deletion should
delete pod first [Feature:OrderedNamespaceDeletion] [FeatureGate:OrderedNamespaceDeletion]
[Beta]'
- featureGate: PersistentIPsForVirtualization
tests:
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip [OCPFeatureGate:NetworkSegmentation]
when the VM attached to a primary UDN is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip [OCPFeatureGate:NetworkSegmentation]
when the VM attached to a primary UDN is restarted'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip [OCPFeatureGate:NetworkSegmentation]
when the VMI attached to a primary UDN is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip when the VM attached
to a secondary UDN is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip when the VM attached
to a secondary UDN is restarted'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using NetworkAttachmentDefinitions
[Suite:openshift/network/virtualization] should keep ip when the VMI attached
to a secondary UDN is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
[OCPFeatureGate:NetworkSegmentation] when the VM attached to a primary UDN
is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
[OCPFeatureGate:NetworkSegmentation] when the VM attached to a primary UDN
is restarted'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
[OCPFeatureGate:NetworkSegmentation] when the VMI attached to a primary UDN
is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
when the VM attached to a secondary UDN is migrated between nodes'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
when the VM attached to a secondary UDN is restarted'
- testName: '[sig-network][OCPFeatureGate:PersistentIPsForVirtualization][Feature:Layer2LiveMigration]
Kubevirt Virtual Machines when using openshift ovn-kubernetes with user defined
networks and persistent ips configured created using [OCPFeatureGate:NetworkSegmentation]
UserDefinedNetwork [Suite:openshift/network/virtualization] should keep ip
when the VMI attached to a secondary UDN is migrated between nodes'
- featureGate: SELinuxMount
tests:
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should not unstage RWO volume when starting a second pod
with the same SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta]
[FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should pass SELinux mount option for RWO volume with SELinuxMount
enabled [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [FeatureGate:SELinuxMount]
[Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should unstage RWO volume when starting a second pod with
different SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta]
[FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] error is bumped on two Pods with a
different context on RWO volume and SELinuxMount enabled [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta] [FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] error is bumped on two Pods with a
different context on RWX volume and SELinuxMount enabled [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta] [FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] error is not bumped on two Pods with
the same context on RWO volume and SELinuxMount enabled [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta] [FeatureGate:SELinuxMount] [Alpha]'
- featureGate: SELinuxMountReadWriteOncePod
tests:
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should add SELinux mount option to existing mount options
[FeatureGate:SELinuxMountReadWriteOncePod] [Beta]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should not pass SELinux mount option for CSI driver that
does not support SELinux mount [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should not pass SELinux mount option for Pod without SELinux
context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should not pass SELinux mount option for RWO volume with
SELinuxMount disabled [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Feature:SELinuxMountReadWriteOncePodOnly]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should not unstage RWO volume when starting a second pod
with the same SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta]
[FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should not unstage RWOP volume when starting a second pod
with the same SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should pass SELinux mount option for RWO volume with SELinuxMount
enabled [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [FeatureGate:SELinuxMount]
[Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should pass SELinux mount option for RWOP volume and Pod
with SELinux context set [FeatureGate:SELinuxMountReadWriteOncePod] [Beta]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should unstage RWO volume when starting a second pod with
different SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta]
[FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly]
[Feature:SELinux] should unstage RWOP volume when starting a second pod with
different SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] error is bumped on two Pods with a
different context on RWO volume and SELinuxMount enabled [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta] [FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] error is bumped on two Pods with a
different context on RWOP volume [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] error is bumped on two Pods with a
different context on RWX volume and SELinuxMount enabled [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta] [FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] error is not bumped on two Pods with
the same context on RWO volume and SELinuxMount enabled [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta] [FeatureGate:SELinuxMount] [Alpha]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] warning is bumped on two Pods with
a different context on RWO volume [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta] [Feature:SELinuxMountReadWriteOncePodOnly]'
- testName: '[sig-storage] CSI Mock selinux on mount metrics SELinuxMount metrics
[LinuxOnly] [Feature:SELinux] [Serial] warning is not bumped on two Pods with
the same context on RWO volume [FeatureGate:SELinuxMountReadWriteOncePod]
[Beta] [Feature:SELinuxMountReadWriteOncePodOnly]'
- featureGate: VSphereDriverConfiguration
tests:
- testName: '[sig-storage][FeatureGate:VSphereDriverConfiguration][Serial][apigroup:operator.openshift.io]
vSphere CSI Driver Configuration snapshot options in clusterCSIDriver should
allow all limits to be set at once'
- testName: '[sig-storage][FeatureGate:VSphereDriverConfiguration][Serial][apigroup:operator.openshift.io]
vSphere CSI Driver Configuration snapshot options in clusterCSIDriver should
allow setting VSAN limit'
- testName: '[sig-storage][FeatureGate:VSphereDriverConfiguration][Serial][apigroup:operator.openshift.io]
vSphere CSI Driver Configuration snapshot options in clusterCSIDriver should
allow setting VVOL limit'
- testName: '[sig-storage][FeatureGate:VSphereDriverConfiguration][Serial][apigroup:operator.openshift.io]
vSphere CSI Driver Configuration snapshot options in clusterCSIDriver should
allow setting global snapshot limit'
- testName: '[sig-storage][FeatureGate:VSphereDriverConfiguration][Serial][apigroup:operator.openshift.io]
vSphere CSI Driver Configuration snapshot options in clusterCSIDriver should
use default when unset'
- featureGate: VolumeAttributesClass
tests:
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (block volmode)] volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should create a volume with VAC'
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (block volmode)] volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume that already has a VAC'
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (block volmode)] volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume with no VAC'
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (default fs)] volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should create a volume with VAC'
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (default fs)] volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume that already has a VAC'
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (default fs)] volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume with no VAC'
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (ntfs)] [Feature:Windows] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should create a volume with VAC'
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (ntfs)] [Feature:Windows] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should modify volume that already
has a VAC'
- testName: '[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic
PV (ntfs)] [Feature:Windows] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should modify volume with no VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (block volmode)] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should create a volume with VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (block volmode)] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should modify volume that already
has a VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (block volmode)] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should modify volume with no VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (default fs)] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should create a volume with VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (default fs)] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should modify volume that already
has a VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (default fs)] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should modify volume with no VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should create a volume with VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should modify volume that already
has a VAC'
- testName: '[sig-storage] CSI Volumes [Driver: pd.csi.storage.gke.io] [Serial]
[Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-modify [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should modify volume with no VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should create a volume with VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume that already has a VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume with no VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should create a volume with VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume that already has a VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume with no VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should create a volume with VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume that already has a VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume with no VAC'
- testName: '[sig-storage] VolumeAttributesClass [Feature:VolumeAttributesClass]
[FeatureGate:VolumeAttributesClass] [Beta] should run through the lifecycle
of a VolumeAttributesClass'
- testName: '[sig-storage] [Serial] Volume metrics PVController should create
bound pv/pvc count metrics for pvc controller with volume attributes class
dimension after creating both pv and pvc [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta]'
- testName: '[sig-storage] [Serial] Volume metrics PVController should create
unbound pvc count metrics for pvc controller with volume attributes class
dimension after creating pvc only [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta]'
- featureGate: VolumeGroupSnapshot
tests:
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: (delete policy)] volumegroupsnapshottable
[Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots
for multiple volumes in a pod'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: CSI Ephemeral-volume (default
fs)] ephemeral should create read-only inline ephemeral volume'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: CSI Ephemeral-volume (default
fs)] ephemeral should create read/write inline ephemeral volume'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: CSI Ephemeral-volume (default
fs)] ephemeral should support expansion of pvcs created for ephemeral pvcs'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: CSI Ephemeral-volume (default
fs)] ephemeral should support multiple inline ephemeral volumes'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: CSI Ephemeral-volume (default
fs)] ephemeral should support two pods which have the same volume definition'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)(allowExpansion)]
volume-expand Verify if offline PVC expansion works'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)(allowExpansion)]
volume-expand should resize volume when PVC is edited while pod is using it'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
disruptive [Disruptive] [LinuxOnly] Should test that pv used in a pod that
is deleted while the kubelet is down cleans up when the kubelet returns.'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
disruptive [Disruptive] [LinuxOnly] Should test that pv used in a pod that
is force deleted while the kubelet is down cleans up when the kubelet returns.'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
disruptive [Disruptive] [LinuxOnly] Should test that pv written before kubelet
restart is readable after restart.'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should access to two volumes with different volume mode
and retain data across pod recreation on different node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should access to two volumes with different volume mode
and retain data across pod recreation on the same node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should access to two volumes with the same volume mode
and retain data across pod recreation on different node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should access to two volumes with the same volume mode
and retain data across pod recreation on the same node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should concurrently access the single read-only volume
from pods on the same node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should concurrently access the single volume from pods
on different node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should concurrently access the single volume from pods
on the same node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should concurrently access the volume and its clone from
pods on the same node [LinuxOnly] [Feature:VolumeSourceXFS]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
multiVolume [Slow] should concurrently access the volume and restored snapshot
from pods on the same node [LinuxOnly] [Feature:VolumeSnapshotDataSource]
[Feature:VolumeSourceXFS]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should mount multiple PV pointing to the same storage on the
same node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should provision correct filesystem size when restoring snapshot
to larger size pvc [Feature:VolumeSnapshotDataSource]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should provision storage with any volume data source [Serial]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should provision storage with mount options'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should provision storage with pvc data source'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should provision storage with pvc data source (ROX mode)'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should provision storage with pvc data source in parallel [Slow]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should provision storage with snapshot data source (ROX mode)
[Feature:VolumeSnapshotDataSource]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
pvc-deletion-performance should delete volumes at scale within performance
constraints [Slow] [Serial]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volume-expand should not allow expansion of pvcs without AllowVolumeExpansion
property'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should create a volume with VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume that already has a VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume with no VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volume-stress multiple pods should access different volumes repeatedly [Slow]
[Serial]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volumeMode should fail to use a volume in a pod with mismatched mode [Slow]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volumeMode should not mount / map unused volumes in a pod [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (block volmode)]
volumes should store data'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)(allowExpansion)]
volume-expand Verify if offline PVC expansion works'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)(allowExpansion)]
volume-expand should resize volume when PVC is edited while pod is using it'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
capacity provides storage capacity information'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup,
new pod fsgroup applied to volume contents'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup,
volume contents ownership changed via chgrp in first pod, new pod with different
fsgroup applied to the volume contents'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup,
volume contents ownership changed via chgrp in first pod, new pod with same
fsgroup applied to the volume contents'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial
fsgroup, new pod fsgroup applied to volume contents'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial
fsgroup, new pod fsgroup applied to volume contents'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial
fsgroup, volume contents ownership changed via chgrp in first pod, new pod
with different fsgroup applied to the volume contents'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial
fsgroup, volume contents ownership changed via chgrp in first pod, new pod
with same fsgroup skips ownership changes to the volume contents'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should mount multiple PV pointing to the same storage on the
same node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should provision correct filesystem size when restoring snapshot
to larger size pvc [Feature:VolumeSnapshotDataSource]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should provision storage with any volume data source [Serial]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should provision storage with mount options'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should provision storage with pvc data source'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should provision storage with pvc data source (ROX mode)'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should provision storage with pvc data source in parallel [Slow]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should provision storage with snapshot data source (ROX mode)
[Feature:VolumeSnapshotDataSource]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
read-write-once-pod [MinimumKubeletVersion:1.27] should block a second pod
from using an in-use ReadWriteOncePod volume on the same node'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
read-write-once-pod [MinimumKubeletVersion:1.27] should preempt lower priority
pods using ReadWriteOncePod volumes'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should be able to unmount after the subpath directory is deleted [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should fail if non-existent subpath is outside the volume [Slow] [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should fail if subpath directory is outside the volume [Slow] [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should fail if subpath file is outside the volume [Slow] [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should fail if subpath with backstepping is outside the volume [Slow]
[LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support creating multiple subpath from same volumes [Slow]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support existing directories when readOnly specified in the
volumeSource'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support existing directory'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support existing single file [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support file as subpath [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support non-existent path'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support readOnly directory specified in the volumeMount'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support readOnly file specified in the volumeMount [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support restarting containers using directory as subpath [Slow]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should support restarting containers using file as subpath [Slow]
[LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should unmount if pod is force deleted while kubelet is down [Disruptive]
[Slow] [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should unmount if pod is gracefully deleted while kubelet is down
[Disruptive] [Slow] [LinuxOnly]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
subPath should verify container cannot write to subpath readonly volumes [Slow]'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
volume-expand should not allow expansion of pvcs without AllowVolumeExpansion
property'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should create a volume with VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]
volume-modify [Feature:VolumeAttributesClass] [FeatureGate:VolumeAttributesClass]
[Beta] should modify volume that already has a VAC'
- testName: '[sig-storage] OCP CSI Volumes [Driver: csi-hostpath-groupsnapshot]
[OCPFeatureGate:VolumeGroupSnapshot] [Testpattern: Dynamic PV (default fs)]