From da697c7926fa713d20c32128025bd277d2d2fe15 Mon Sep 17 00:00:00 2001 From: Bryan Cox Date: Wed, 3 Jun 2026 10:28:43 -0400 Subject: [PATCH] test(e2e): add missing v2 test suites to Azure self-managed test matrix Several platform-agnostic v2 test suites were not being selected by any Azure self-managed cluster variant label filter. Distribute them across the existing parallel cluster variants to improve coverage: - public: add control-plane-workloads - private: add hosted-cluster-health, hosted-cluster-security, hosted-cluster-compliance - oauth-lb: add hosted-cluster-metrics, hosted-cluster-image-registry Co-Authored-By: Claude Opus 4.6 --- test/e2e/v2/lifecycle/azure.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/v2/lifecycle/azure.go b/test/e2e/v2/lifecycle/azure.go index 54948d0aa220..dcf96d025a9e 100644 --- a/test/e2e/v2/lifecycle/azure.go +++ b/test/e2e/v2/lifecycle/azure.go @@ -205,20 +205,20 @@ func (a *AzurePlatformConfig) TestMatrix(releaseImage string) TestMatrix { { Name: "public", ClusterFile: "cluster-name-public", - LabelFilter: "self-managed-azure-public || nodepool-lifecycle || secret-encryption", + LabelFilter: "self-managed-azure-public || nodepool-lifecycle || secret-encryption || control-plane-workloads || hosted-cluster-security", Skip: "KAS allowed CIDRs", JUnitFile: "junit_self_managed_azure_public.xml", }, { Name: "private", ClusterFile: "cluster-name-private", - LabelFilter: "self-managed-azure-private", + LabelFilter: "self-managed-azure-private || hosted-cluster-compliance", JUnitFile: "junit_self_managed_azure_private.xml", }, { Name: "oauth-lb", ClusterFile: "cluster-name-oauth-lb", - LabelFilter: "self-managed-azure-oauth-lb", + LabelFilter: "self-managed-azure-oauth-lb || hosted-cluster-health || hosted-cluster-metrics || hosted-cluster-image-registry", JUnitFile: "junit_self_managed_azure_oauth_lb.xml", }, {