7
7
Periodic = Label ("PERIODIC" )
8
8
Conformance = Label ("conformance" )
9
9
10
- // SIGs
10
+ /* SIGs */
11
+
11
12
SigCompute = Label ("sig-compute" )
12
13
SigOperator = Label ("sig-operator" )
13
14
SigNetwork = Label ("sig-network" )
17
18
SigMonitoring = Label ("sig-monitoring" )
18
19
SigPerformance = Label ("sig-performance" )
19
20
20
- // HW
21
+ /* HW */
22
+
21
23
GPU = Label ("GPU" )
22
24
VGPU = Label ("VGPU" )
23
25
SEV = Label ("SEV" )
@@ -30,11 +32,13 @@ var (
30
32
KSMRequired = Label ("KSM-required" )
31
33
ACPI = Label ("ACPI" )
32
34
33
- // Deployment
35
+ /* Deployment */
36
+
34
37
SingleReplica = Label ("single-replica" )
35
38
MultiReplica = Label ("multi-replica" )
36
39
37
- // Features
40
+ /* Features */
41
+
38
42
CPUModel = Label ("cpumodel" )
39
43
VSOCK = Label ("vsock" )
40
44
VirtioFS = Label ("virtiofs" )
@@ -64,33 +68,40 @@ var (
64
68
RequiresHugepages2Mi = Label ("requireHugepages2Mi" )
65
69
RequiresHugepages1Gi = Label ("requireHugepages1Gi" )
66
70
67
- // Storage classes
68
- // Requires a storage class with support for snapshots
71
+ /* Storage classes */
72
+
73
+ // RequiresSnapshotStorageClass requires a storage class with support for snapshots
69
74
RequiresSnapshotStorageClass = Label ("RequiresSnapshotStorageClass" )
70
- // Requires a storage class without support for snapshots
75
+ // RequiresNoSnapshotStorageClass requires a storage class without support for snapshots
71
76
RequiresNoSnapshotStorageClass = Label ("RequiresNoSnapshotStorageClass" )
72
- // Requires a storage class with ReadWriteMany Block support
77
+ // RequiresRWXBlock requires a storage class with ReadWriteMany Block support
73
78
RequiresRWXBlock = Label ("RequiresRWXBlock" )
74
- // Requires the VMStateStorageClass to be set to ReadWriteOnce Filesystem storage class
79
+ // RequiresRWOFsVMStateStorageClass requires the VMStateStorageClass to be set to ReadWriteOnce Filesystem storage class
75
80
RequiresRWOFsVMStateStorageClass = Label ("RequiresRWOFsVMStateStorageClass" )
76
- // Requires the VMStateStorageClass to be set to ReadWriteMany Filesystem storage class
81
+ // RequiresRWXFsVMStateStorageClass requires the VMStateStorageClass to be set to ReadWriteMany Filesystem storage class
77
82
RequiresRWXFsVMStateStorageClass = Label ("RequiresRWXFsVMStateStorageClass" )
78
83
79
- // Requires a storage class with Block storage support
84
+ // RequiresBlockStorage requires a storage class with Block storage support
80
85
RequiresBlockStorage = Label ("RequiresBlockStorage" )
81
- // Tests that ensure sig-storage functionality which are conformance-unready
86
+ // StorageCritical tests that ensure sig-storage functionality which are conformance-unready
82
87
StorageCritical = Label ("StorageCritical" )
83
- // Requires a storage class with volume expansion support
88
+ // RequiresVolumeExpansion requires a storage class with volume expansion support
84
89
RequiresVolumeExpansion = Label ("RequiresVolumeExpansion" )
90
+
91
+ /* Kubernetes versions */
92
+
85
93
// Kubernetes versions
86
94
Kubernetes130 = Label ("kubernetes130" )
87
- // WG archs
95
+
96
+ /* architecture working groups */
97
+
88
98
WgS390x = Label ("wg-s390x" )
89
99
WgArm64 = Label ("wg-arm64" )
100
+
90
101
// Virtctl related tests
91
102
Virtctl = Label ("virtctl" )
92
103
93
- // NoFlakeChecker decorates tests that are not compatible with the check-tests-for-flakes test lane.
104
+ // NoFlakeCheck decorates tests that are not compatible with the check-tests-for-flakes test lane.
94
105
// This should only be used for legitimate purposes, like on tests that have a flake-checker-friendly clone.
95
106
NoFlakeCheck = Label ("no-flake-check" )
96
107
)
0 commit comments