diff --git a/test/e2e/e2e_suite_test.go b/test/e2e/e2e_suite_test.go index 48aab8d1..cb59742a 100644 --- a/test/e2e/e2e_suite_test.go +++ b/test/e2e/e2e_suite_test.go @@ -93,6 +93,9 @@ func verifyControllersUp(kc *kubeclient.KubeClient) error { managedcluster.ProviderAWS, managedcluster.ProviderAzure, managedcluster.ProviderVSphere, + managedcluster.ProviderK0smotron, + managedcluster.ProviderK0smotronBootstrap, + managedcluster.ProviderK0smotronControlPlane, } for _, provider := range providers { diff --git a/test/e2e/managedcluster/managedcluster.go b/test/e2e/managedcluster/managedcluster.go index e8be90e1..cf404315 100644 --- a/test/e2e/managedcluster/managedcluster.go +++ b/test/e2e/managedcluster/managedcluster.go @@ -33,10 +33,13 @@ import ( type ProviderType string const ( - ProviderCAPI ProviderType = "cluster-api" - ProviderAWS ProviderType = "infrastructure-aws" - ProviderAzure ProviderType = "infrastructure-azure" - ProviderVSphere ProviderType = "infrastructure-vsphere" + ProviderCAPI ProviderType = "cluster-api" + ProviderAWS ProviderType = "infrastructure-aws" + ProviderAzure ProviderType = "infrastructure-azure" + ProviderVSphere ProviderType = "infrastructure-vsphere" + ProviderK0smotron ProviderType = "infrastructure-k0smotron" + ProviderK0smotronBootstrap ProviderType = "bootstrap-k0smotron" + ProviderK0smotronControlPlane ProviderType = "control-plane-k0smotron" providerLabel = "cluster.x-k8s.io/provider" )