Skip to content

Commit 92b52f7

Browse files
committed
ignore k8s v1.29 in AKS e2e tests
1 parent 309ac0c commit 92b52f7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/e2e/aks_versions.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ package e2e
2222
import (
2323
"context"
2424
"fmt"
25+
"strings"
2526

2627
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
2728
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v4"
@@ -169,6 +170,10 @@ func getLatestStableAKSKubernetesVersionOffset(ctx context.Context, subscription
169170
if patch[:1] != "v" && !ptr.Deref(minor.IsPreview, false) {
170171
version = "v" + patch
171172
}
173+
// v1.29 is broken for our pool1 configuration.
174+
if strings.HasPrefix(version, "v1.29.") {
175+
continue
176+
}
172177
orchestratorversions = append(orchestratorversions, version)
173178
}
174179
}

0 commit comments

Comments
 (0)