Skip to content

Commit

Permalink
E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
slysunkin committed Nov 22, 2024
1 parent 62ee7a6 commit 72dd667
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions test/e2e/e2e_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
11 changes: 7 additions & 4 deletions test/e2e/managedcluster/managedcluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down

0 comments on commit 72dd667

Please sign in to comment.