mark aggregator test LinuxOnly

Signed-off-by: joshjms <joshjms1607@gmail.com>
This commit is contained in:
joshjms
2025-10-16 22:23:19 +08:00
parent 3828756d90
commit ae3605d109
2 changed files with 5 additions and 3 deletions

View File

@@ -256,9 +256,10 @@
file: test/e2e/apimachinery/aggregated_discovery.go
- testname: aggregator-supports-the-sample-apiserver
codename: '[sig-api-machinery] Aggregator Should be able to support the 1.17 Sample
API Server using the current Aggregator [Conformance]'
API Server using the current Aggregator [LinuxOnly] [Conformance]'
description: Ensure that the sample-apiserver code from 1.17 and compiled against
1.17 will work on the current Aggregator/API-Server.
1.17 will work on the current Aggregator/API-Server. This test is marked LinuxOnly
because etcd does not provide or support images for Windows.
release: v1.17, v1.21, v1.27
file: test/e2e/apimachinery/aggregator.go
- testname: Custom Resource Definition Conversion Webhook, convert mixed version list

View File

@@ -97,8 +97,9 @@ var _ = SIGDescribe("Aggregator", func() {
Testname: aggregator-supports-the-sample-apiserver
Description: Ensure that the sample-apiserver code from 1.17 and compiled against 1.17
will work on the current Aggregator/API-Server.
This test is marked LinuxOnly because etcd does not provide or support images for Windows.
*/
framework.ConformanceIt("Should be able to support the 1.17 Sample API Server using the current Aggregator", func(ctx context.Context) {
framework.ConformanceIt("Should be able to support the 1.17 Sample API Server using the current Aggregator [LinuxOnly]", func(ctx context.Context) {
// Testing a 1.17 version of the sample-apiserver
TestSampleAPIServer(ctx, f, aggrclient, imageutils.GetE2EImage(imageutils.APIServer), defaultApiServiceGroupName, defaultApiServiceVersion)
})