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" )
@@ -63,33 +67,40 @@ var (
63
67
RequiresHugepages2Mi = Label ("requireHugepages2Mi" )
64
68
RequiresHugepages1Gi = Label ("requireHugepages1Gi" )
65
69
66
- // Storage classes
67
- // Requires a storage class with support for snapshots
70
+ /* Storage classes */
71
+
72
+ // RequiresSnapshotStorageClass requires a storage class with support for snapshots
68
73
RequiresSnapshotStorageClass = Label ("RequiresSnapshotStorageClass" )
69
- // Requires a storage class without support for snapshots
74
+ // RequiresNoSnapshotStorageClass requires a storage class without support for snapshots
70
75
RequiresNoSnapshotStorageClass = Label ("RequiresNoSnapshotStorageClass" )
71
- // Requires a storage class with ReadWriteMany Block support
76
+ // RequiresRWXBlock requires a storage class with ReadWriteMany Block support
72
77
RequiresRWXBlock = Label ("RequiresRWXBlock" )
73
- // Requires the VMStateStorageClass to be set to ReadWriteOnce Filesystem storage class
78
+ // RequiresRWOFsVMStateStorageClass requires the VMStateStorageClass to be set to ReadWriteOnce Filesystem storage class
74
79
RequiresRWOFsVMStateStorageClass = Label ("RequiresRWOFsVMStateStorageClass" )
75
- // Requires the VMStateStorageClass to be set to ReadWriteMany Filesystem storage class
80
+ // RequiresRWXFsVMStateStorageClass requires the VMStateStorageClass to be set to ReadWriteMany Filesystem storage class
76
81
RequiresRWXFsVMStateStorageClass = Label ("RequiresRWXFsVMStateStorageClass" )
77
82
78
- // Requires a storage class with Block storage support
83
+ // RequiresBlockStorage requires a storage class with Block storage support
79
84
RequiresBlockStorage = Label ("RequiresBlockStorage" )
80
- // Tests that ensure sig-storage functionality which are conformance-unready
85
+ // StorageCritical tests that ensure sig-storage functionality which are conformance-unready
81
86
StorageCritical = Label ("StorageCritical" )
82
- // Requires a storage class with volume expansion support
87
+ // RequiresVolumeExpansion requires a storage class with volume expansion support
83
88
RequiresVolumeExpansion = Label ("RequiresVolumeExpansion" )
89
+
90
+ /* Kubernetes versions */
91
+
84
92
// Kubernetes versions
85
93
Kubernetes130 = Label ("kubernetes130" )
86
- // WG archs
94
+
95
+ /* architecture working groups */
96
+
87
97
WgS390x = Label ("wg-s390x" )
88
98
WgArm64 = Label ("wg-arm64" )
99
+
89
100
// Virtctl related tests
90
101
Virtctl = Label ("virtctl" )
91
102
92
- // NoFlakeChecker decorates tests that are not compatible with the check-tests-for-flakes test lane.
103
+ // NoFlakeCheck decorates tests that are not compatible with the check-tests-for-flakes test lane.
93
104
// This should only be used for legitimate purposes, like on tests that have a flake-checker-friendly clone.
94
105
NoFlakeCheck = Label ("no-flake-check" )
95
106
)
0 commit comments